diff options
author | Remi Collet <remi@remirepo.net> | 2019-03-25 11:21:52 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-03-25 11:21:52 +0100 |
commit | 45ebd9610db7016bf7f1ef307ea9c3ff92d95d0d (patch) | |
tree | dece6c6544a771db169770e9dcdea4e2921aea24 /composer.json | |
parent | ebc8c232edc1d0511874d607a77b2b2bb51a6b01 (diff) |
update to 1.6.0
raise dependency on PHP 7.1.3
use PHPUnit 7 for test suite
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/composer.json b/composer.json index 385fa93..828a7d2 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,14 @@ { "name": "doctrine/collections", "type": "library", - "description": "Collections Abstraction library", - "keywords": ["collections", "array", "iterator"], - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "keywords": [ + "php", + "collections", + "array", + "iterators" + ], + "homepage": "https://www.doctrine-project.org/projects/collections.html", "license": "MIT", "authors": [ {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"}, @@ -13,14 +18,16 @@ {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"} ], "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1.3" }, "require-dev": { - "phpunit/phpunit": "^5.7", - "doctrine/coding-standard": "~0.1@dev" + "phpunit/phpunit": "^7.0", + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "vimeo/psalm": "^3.2.2" }, "autoload": { - "psr-0": { "Doctrine\\Common\\Collections\\": "lib/" } + "psr-4": { "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } }, "autoload-dev": { "psr-4": { @@ -29,7 +36,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.6.x-dev" } } } |