diff options
author | Davey Shafik <me@daveyshafik.com> | 2017-01-08 15:21:21 -0800 |
---|---|---|
committer | Davey Shafik <me@daveyshafik.com> | 2017-01-08 15:39:26 -0800 |
commit | 27fa155bd5432d79a0e67744dd58b813e263f0a5 (patch) | |
tree | 330da21d6196da713e67afbca93491fc88a348c9 /composer.json | |
parent | b20c8c6569c2a3144c311a40b3a2e9a658468949 (diff) | |
download | php7-mysql-shim-origin/old-php-support.zip php7-mysql-shim-origin/old-php-support.tar.gz php7-mysql-shim-origin/old-php-support.tar.bz2 |
Fix tests on earlier versions of PHP/PHPUnitorigin/old-php-support
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/composer.json b/composer.json index ff55c34..d301422 100644 --- a/composer.json +++ b/composer.json @@ -10,16 +10,20 @@ } ], "require": { - "php": ">=5.3", + "php": ">=5.3.6", "ext-mysqli": "*" }, "require-dev": { - "php": ">=5.6", "squizlabs/php_codesniffer": "^2.3", - "friendsofphp/php-cs-fixer": "^1.9", - "phpunit/phpunit": "^5.2" + "friendsofphp/php-cs-fixer": "^1.9|^2.0", + "phpunit/phpunit": "^4.8|^5.2" }, "autoload": { "files": ["lib/mysql.php"] + }, + "config": { + "platform": { + "php": "5.3.6" + } } } |