summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-03-15 08:00:46 +0100
committerRemi Collet <remi@php.net>2022-03-15 08:00:46 +0100
commitba45fc2aa9026030e350817c709501939317b302 (patch)
tree0655b76740e56d9e0caf762d22f693514ee5bbaa /composer.json
parenta6b86ca5085d02775d74a90f01c26767ad518f8a (diff)
update to 2.4.0
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json27
1 files changed, 17 insertions, 10 deletions
diff --git a/composer.json b/composer.json
index b264f63..1eea8a9 100644
--- a/composer.json
+++ b/composer.json
@@ -29,28 +29,35 @@
},
"require-dev": {
"composer/package-versions-deprecated": "^1.11",
- "phpstan/phpstan": "1.2.0",
+ "phpstan/phpstan": "1.4.6",
"doctrine/annotations": "^1.0",
- "doctrine/coding-standard": "^6.0 || ^9.0",
+ "doctrine/coding-standard": "^9.0",
"doctrine/common": "^3.0",
- "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
- "symfony/cache": "^4.4 || ^5.0 || ^6.0",
- "vimeo/psalm": "4.13.1"
+ "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.5",
+ "symfony/cache": "^4.4 || ^5.4 || ^6.0",
+ "vimeo/psalm": "4.21.0"
},
"conflict": {
"doctrine/annotations": "<1.0 || >=2.0",
- "doctrine/common": "<2.10@dev"
+ "doctrine/common": "<2.10"
},
"autoload": {
"psr-4": {
- "Doctrine\\Common\\": "lib/Doctrine/Common",
- "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
+ "Doctrine\\Common\\": "src/Common",
+ "Doctrine\\Persistence\\": "src/Persistence"
}
},
"autoload-dev": {
"psr-4": {
- "Doctrine\\Tests\\": "tests/Doctrine/Tests",
- "Doctrine\\Tests_PHP74\\": "tests/Doctrine/Tests_PHP74"
+ "Doctrine\\Tests\\": "tests",
+ "Doctrine\\Tests_PHP74\\": "tests_php74",
+ "Doctrine\\Tests_PHP81\\": "tests_php81"
+ }
+ },
+ "config": {
+ "allow-plugins": {
+ "dealerdirect/phpcodesniffer-composer-installer": true,
+ "composer/package-versions-deprecated": true
}
}
}