summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Forcing a PR to update the status badgeorigin/fake-prDavey Shafik2020-10-271-0/+0
|
* Fixup README badgeDavey Shafik2020-10-272-2/+2
|
* Merge pull request #56 from dshafik/github-actionsDavey Shafik2020-10-2711-562/+1550
|\ | | | | Switch to GitHub Actions from Travis CI
| * Add %origin/github-actionsDavey Shafik2020-10-271-1/+1
| |
| * Push to coverage to ENVDavey Shafik2020-10-271-1/+1
| |
| * Remove scrutinizerDavey Shafik2020-10-273-77/+1
| |
| * Remove external code coverageDavey Shafik2020-10-271-4/+1
| |
| * Use matrix.php-versionsDavey Shafik2020-10-271-3/+3
| |
| * Try to fix scruitinizer coverage+code coverage badgeDavey Shafik2020-10-272-1/+23
| |
| * Show Github Actions build statusDavey Shafik2020-10-271-1/+1
| |
| * Update scrutinizer config to ignore all deps (only used for dev)Davey Shafik2020-10-271-3/+50
| |
| * Only run on PRsDavey Shafik2020-10-271-1/+1
| |
| * Push code coverage to scrutinizerDavey Shafik2020-10-271-0/+2
| |
| * Remove Travis CI in favor of GitHub ActionsDavey Shafik2020-10-271-55/+0
| |
| * Add limited offset support to mysql_fetch_field()Davey Shafik2020-10-272-9/+174
| | | | | | | | `mysqli` seems to reuse the result objects and doesn't support this feature directly, making this feature very brittle. It should be avoided.
| * Add missing warning from mysql_fetch_field()Davey Shafik2020-10-272-6/+9
| |
| * s/char/stringDavey Shafik2020-10-272-3/+3
| |
| * s/varchar/stringDavey Shafik2020-10-272-9/+9
| |
| * mysql_fetch_field() returns a string for typeDavey Shafik2020-10-272-12/+94
| |
| * Correctly check error messages in test_mysql_function_invalid_result()Davey Shafik2020-10-271-2/+1
| |
| * Remove socket testDavey Shafik2020-10-272-14/+0
| |
| * Skip socket test in CIDavey Shafik2020-10-271-0/+1
| |
| * Try to fix mysql_fetch_object() test on PHP 5.6Davey Shafik2020-10-271-8/+20
| |
| * Try to fix mysql_fetch_object() and mysql_connect() with socket testsDavey Shafik2020-10-271-2/+2
| |
| * Use tear_down and tear_down_after_classDavey Shafik2020-10-271-2/+2
| |
| * Remove composer cacheDavey Shafik2020-10-271-11/+0
| |
| * Remote extraneous var_dump()Davey Shafik2020-10-271-1/+0
| |
| * Use 127.0.0.1Davey Shafik2020-10-271-1/+1
| |
| * Update name of the linter workflowDavey Shafik2020-10-271-1/+1
| |
| * Run linter on PHP 5.3 and 8.0Davey Shafik2020-10-271-0/+23
| |
| * Try to fix MySQL connection again…Davey Shafik2020-10-271-3/+6
| |
| * Try to fix MySQL connectionDavey Shafik2020-10-271-1/+5
| |
| * Add PHP 5.3 and 8.0Davey Shafik2020-10-271-1/+1
| |
| * composer update to get the correct version of phpunitDavey Shafik2020-10-271-2/+2
| |
| * Use Yoast/PHPUnit-polyfills, add more testsDavey Shafik2020-10-273-443/+1181
| |
| * Add phpunit cache file to gitignoreDavey Shafik2020-10-271-0/+1
| |
| * Use lowest deps (for now)Davey Shafik2020-10-261-3/+2
| |
| * Add phpunit workflowDavey Shafik2020-10-261-0/+47
|/
* Merge pull request #55 from ↵dependabot[bot]2020-10-261-5/+6
|\ | | | | | | dshafik/dependabot/composer/squizlabs/php_codesniffer-3.5.8
| * Bump squizlabs/php_codesniffer from 3.5.6 to 3.5.8dependabot[bot]2020-10-261-5/+6
|/ | | | | | | Bumps [squizlabs/php_codesniffer](https://github.com/squizlabs/PHP_CodeSniffer) from 3.5.6 to 3.5.8. - [Release notes](https://github.com/squizlabs/PHP_CodeSniffer/releases) - [Commits](https://github.com/squizlabs/PHP_CodeSniffer/compare/3.5.6...3.5.8) Signed-off-by: dependabot[bot] <support@github.com>
* Merge pull request #54 from SWsistemas/masterDavey Shafik2020-10-252-2/+29
|\ | | | | Adds backtrace for illegal argument supplied warning
| * Fix grammar on commentFernando da Silva Sousa2020-10-231-1/+1
| |
| * Test check_valid_result function backtrace individuallyFernando da Silva Sousa2020-10-231-0/+7
| |
| * Add asserts about invalid results backtracing correctlyFernando da Silva Sousa2020-10-231-0/+2
| |
| * Fix possibility of empty backtrace caused by traces without file and lineFernando da Silva Sousa2020-10-231-4/+14
| |
| * Adds backtrace for illegal arguments suppliedFernando da Silva Sousa2020-10-221-2/+10
|/
* Create dependabot.ymlDavey Shafik2020-10-121-0/+11
|
* Allow socket connectionsDavey Shafik2020-08-111-1/+8
|
* Merge branch 'master' of https://github.com/bridgebase/php7-mysql-shim into ↵origin/pr/bpolaszek/49Davey Shafik2020-08-110-0/+0
|\ | | | | | | pr/bpolaszek/49
| * Fix mysqli_fetch_field consistencyBeno!t POLASZEK2020-01-131-1/+10
| |
* | Add tests for mysql_fetch_field()Davey Shafik2020-08-111-21/+141
| |
* | Don't try to assign fields if the fetch failedDavey Shafik2020-08-111-8/+10
| |
* | Fix mysqli_fetch_field consistencyBeno!t POLASZEK2020-08-111-1/+10
| |
* | Merge branch 'master' of https://github.com/dshafik/php7-mysql-shimDavey Shafik2020-08-1110-1034/+2330
|\ \
| * \ Merge pull request #52 from dshafik/fixup-testsDavey Shafik2020-08-1110-1034/+2330
| |\ \ | | | | | | | | Add Codespaces support & Fixup Tests
| | * | Fixup phpunit configorigin/fixup-testsDavey Shafik2020-08-111-22/+20
| | | |
| | * | Remove appveyorDavey Shafik2020-08-112-76/+0
| | | |
| | * | Try to fixup TravisCI configDavey Shafik2020-08-113-4/+2
| | | |
| | * | Update TravisCI config to only test on 7.1+Davey Shafik2020-08-111-23/+8
| | | |
| | * | $new is **NOT** supported by mysqli, reverting #45Davey Shafik2020-08-111-1/+5
| | | |
| | * | Update to PHPUnit 8.xDavey Shafik2020-08-114-860/+2311
| | | |
| | * | Add MYSQL_HOST env varDavey Shafik2020-08-111-11/+14
| | | |
| | * | Try to fix testsDavey Shafik2020-08-112-83/+16
| |/ /
* | | Remove SensioLabs InsightDavey Shafik2020-08-111-1/+0
|/ /
* | Allow empty MySQL passwordDavey Shafik2020-08-111-1/+1
| |
* | Merge branch 'master' of https://github.com/dshafik/php7-mysql-shimDavey Shafik2020-08-111-1/+1
|\ \
| * | Use links instead of depends_onDavey Shafik2020-08-111-1/+1
| | |
* | | Add extensionsDavey Shafik2020-08-111-1/+5
|/ /
* | Copy in the composer install scriptDavey Shafik2020-08-111-1/+2
| |
* | Add git auto-complete to bashDavey Shafik2020-08-111-0/+3
| |
* | Update to include ext/mysqli and composerDavey Shafik2020-08-113-0/+26
| |
* | Some minor updates to tests to enable it to work inside CodeSpacesDavey Shafik2020-08-112-16/+28
| |
* | Add CodeSpaces .devcontainer configDavey Shafik2020-08-113-0/+96
| |
* | Merge pull request #51 from staabm/patch-1Davey Shafik2020-05-041-1/+1
|\ \ | |/ |/| Fixed dead url in readme
| * Fixed dead url in readmeMarkus Staab2020-05-041-1/+1
|/
* Merge pull request #48 from staabm/patch-11.0.0beta3Davey Shafik2020-01-021-1/+5
|\ | | | | Added note about alternative approaches
| * Update README.mdMarkus Staab2019-12-241-1/+1
| |
| * Added note about alternative approachesMarkus Staab2019-12-241-1/+5
|/
* Avoid deprecated array access syntax (#47)Michele Locati2019-12-031-2/+2
|
* Handle custom ports defined in the hostname (#44)Mike Gilfillan2019-08-061-2/+10
| | | | | | | | | | | | | | | | | | * Handle custom ports defined in the hostname * Improve detection of custom ports when connecting Perstitent connections are defined by prepending the hostname with "p:". This would have been detected as the start of a custom port and broken the connection. A better solution is to detect the port at the end of host name using regex. * Never detect a prefix of "p:" as a hostname This improves edge cases when using a persistent connection with a numeric hostname. For example: "p:253"
* Use the parameter in a way compatible with the parameter in mysql_connect ↵Jonathan Hawkes2019-07-241-4/+2
| | | | (#45)
* Update dependenciesDavey Shafik2018-01-182-753/+824
|
* Update Travis config to re-enable PHP 5.3Davey Shafik2018-01-181-9/+13
|
* Run phpcbf (#35)Webysther Nunes2017-09-291-3/+3
|
* Fix call to `mysqli_ping` (#28)Edward Savage2017-03-271-1/+1
| | | All of the other `mysqli_` functions with the `$link` as an argument used `\Dshafik\MySQL::getConnection($link)`. The call to `mysqli_ping` did not.
* Remove deprecation notice1.0.0beta2Davey Shafik2017-01-121-6/+0
|
* Remove dev builds, add allowed failures to AppVeyorDavey Shafik2017-01-102-54/+29
|
* Add a single deprecation notice on loadDavey Shafik2017-01-101-0/+6
|
* Fix tests on WindowsDavey Shafik2017-01-101-6/+6
|
* Clarify install/usage docsDavey Shafik2017-01-101-2/+4
|
* Fix CSDavey Shafik2017-01-102-13/+16
|
* Add composer scripts, test and fix-csDavey Shafik2017-01-102-24/+8
|
* Check ext/mysqli is available (for non-composer installs)Davey Shafik2017-01-101-7/+11
|
* Add initial support for AppVeyorDavey Shafik2017-01-103-13/+91
|
* Fix typo, remove outdated caveatDavey Shafik2017-01-101-2/+1
|
* Test for UTF-8 supportDavey Shafik2017-01-101-7/+93
|
* Refactor \Dshafik\MySQL::mysqlFieldInfo() to simplifyDavey Shafik2017-01-101-10/+6
|
* Expand Travis config to account for many different configsorigin/travis-matrixDavey Shafik2017-01-101-1/+76
|
* Update to state it will work from 5.3.6+1.0.0beta1Davey Shafik2017-01-081-1/+1
|
* Add warning to the class commentDavey Shafik2017-01-081-2/+8
|