From 45ebd9610db7016bf7f1ef307ea9c3ff92d95d0d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 25 Mar 2019 11:21:52 +0100 Subject: update to 1.6.0 raise dependency on PHP 7.1.3 use PHPUnit 7 for test suite --- composer.json | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) (limited to 'composer.json') 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" } } } -- cgit