summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json22
1 files changed, 14 insertions, 8 deletions
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": {