Skip to content

Commit

Permalink
Update project dependencies
Browse files Browse the repository at this point in the history
- Require PHP 8.2 or higher
- Require PHPUnit 11
- Require pcov extension for code coverage
- Add squizlabs/php_codesniffer for code standards
- Require symfony/cache for caching
- Remove Doctrine Cache and Annotations
- Remove laminas/laminas-zendframework-bridge
  • Loading branch information
Igor Kusmitsch committed Sep 25, 2024
1 parent 3e703a5 commit e3f5fbd
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@
],

"require": {
"php": "~8.0 || ~8.1",
"doctrine/annotations": "^1.13",
"laminas/laminas-zendframework-bridge": "^1.0"
"php": "^8.2"
},

"require-dev": {
"doctrine/cache": "~1.3",
"phpunit/phpunit": "^9",
"laminas/laminas-filter": "^2.9",
"dms/coding-standard": "^12"
"ext-pcov": "*",
"phpunit/phpunit": "^11",
"laminas/laminas-filter": "^2.37",
"squizlabs/php_codesniffer": "3.*",
"symfony/cache": "^6.4 | ^7.0"
},
"autoload": {
"psr-0": {
Expand Down

0 comments on commit e3f5fbd

Please sign in to comment.