summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-01-09 09:06:44 +0100
committerRemi Collet <remi@remirepo.net>2020-01-09 09:06:44 +0100
commitf0e5c8c20b6232174777364404cc693bcbc131c1 (patch)
treec6cd21815ddd31e042a478b7df48a78c69d76317 /composer.json
parentf2ffa22e273b21736302aff1887d7d2fe98e9a42 (diff)
v1.1.0
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": {