diff options
author | Remi Collet <remi@remirepo.net> | 2018-10-17 15:35:29 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-10-17 15:35:29 +0200 |
commit | 6e4a286332a568b4856d2ddd6c3bc409d8999521 (patch) | |
tree | ab019e9aca735a2ab89b9d9509ccf3de0d3691a7 /composer.json | |
parent | dd095063896505a5d1aa6e36f936674895883de7 (diff) |
update to 2.7.2
raise dependencies on PHP 7.1
use range dependencies
switch to phpunit7
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/composer.json b/composer.json index acf3405..943dcf0 100644 --- a/composer.json +++ b/composer.json @@ -12,26 +12,36 @@ {"name": "Jonathan Wage", "email": "jonwage@gmail.com"} ], "require": { - "php": ">=5.3.2", - "doctrine/common": ">=2.4,<2.8-dev" + "php": "^7.1", + "ext-pdo": "*", + "doctrine/common": "^2.7.1" }, "require-dev": { - "phpunit/phpunit": "4.*", - "symfony/console": "2.*||^3.0" + "doctrine/coding-standard": "^4.0", + "phpunit/phpunit": "^7.0", + "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5", + "symfony/console": "^2.0.5||^3.0", + "symfony/phpunit-bridge": "^3.4.5|^4.0.5" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." }, "bin": ["bin/doctrine-dbal"], + "config": { + "sort-packages": true + }, "autoload": { "psr-0": { "Doctrine\\DBAL\\": "lib/" } }, + "autoload-dev": { + "psr-0": { "Doctrine\\Tests\\": "tests/" } + }, "extra": { "branch-alias": { - "dev-master": "2.5.x-dev" + "dev-master": "2.7.x-dev" } }, "archive": { - "exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar"] + "exclude": ["!vendor", "tests", "*phpunit.xml", ".appveyor.yml", ".travis.yml", "build.xml", "build.properties", "composer.phar"] } } |