diff options
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" } } } |