From f0e5c8c20b6232174777364404cc693bcbc131c1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 9 Jan 2020 09:06:44 +0100 Subject: v1.1.0 --- composer.json | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index ad31969..c32af95 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,11 @@ { "name": "doctrine/reflection", "type": "library", - "description": "Doctrine Reflection component", - "keywords": ["reflection"], + "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", + "keywords": [ + "reflection", + "static" + ], "homepage": "https://www.doctrine-project.org/projects/reflection.html", "license": "MIT", "authors": [ @@ -19,12 +22,14 @@ "doctrine/annotations": "^1.0" }, "require-dev": { - "phpstan/phpstan": "^0.9.2", - "phpstan/phpstan-phpunit": "^0.9.4", + "phpstan/phpstan": "^0.11.0", + "phpstan/phpstan-phpunit": "^0.11.0", "phpunit/phpunit": "^7.0", - "doctrine/coding-standard": "^4.0", - "doctrine/common": "^2.8", - "squizlabs/php_codesniffer": "^3.0" + "doctrine/coding-standard": "^5.0", + "doctrine/common": "^2.10" + }, + "conflict": { + "doctrine/common": "<2.9" }, "autoload": { "psr-4": { @@ -33,7 +38,8 @@ }, "autoload-dev": { "psr-4": { - "Doctrine\\Tests\\": "tests/Doctrine/Tests" + "Doctrine\\Tests\\": "tests/Doctrine/Tests", + "Doctrine\\Tests_PHP74\\": "tests/Doctrine/Tests_PHP74" } }, "extra": { -- cgit