Skip to content

Commit

Permalink
Require PHP>=8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Chemaclass committed Dec 21, 2023
1 parent a85a5b3 commit dce9c9f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
17 changes: 9 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
"description": "A minimalistic HTTP router.",
"license": "MIT",
"require": {
"php": ">=8.0.2",
"gacela-project/container": "^0.5"
"php": ">=8.1",
"gacela-project/container": "^0.6"
},
"require-dev": {
"ext-mbstring": "*",
"friendsofphp/php-cs-fixer": "^3.18",
"gacela-project/gacela": "^1.4",
"friendsofphp/php-cs-fixer": "^3.41",
"gacela-project/gacela": "^1.7",
"infection/infection": "^0.26",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.18",
"symfony/var-dumper": "^5.4",
"vimeo/psalm": "^5.12"
"vimeo/psalm": "^5.18"
},
"suggest": {
"gacela-project/gacela": "^1.4"
"gacela-project/gacela": "^1.7"
},
"autoload": {
"psr-4": {
Expand All @@ -36,9 +36,10 @@
"ctal": [
"@static-clear-cache",
"@csfix",
"@test-all",
"@test",
"@infection"
],
"test": "@test-all",
"test-all": [
"@quality",
"@phpunit"
Expand All @@ -59,7 +60,7 @@
},
"config": {
"platform": {
"php": "8.0.2"
"php": "8.1"
},
"optimize-autoloader": true,
"preferred-install": "dist",
Expand Down
1 change: 1 addition & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
</plugins>

<issueHandlers>
<ArgumentTypeCoercion errorLevel="suppress" />
<InvalidReturnType errorLevel="suppress" />
<InvalidReturnStatement errorLevel="suppress" />
<LessSpecificReturnStatement errorLevel="suppress" />
Expand Down

0 comments on commit dce9c9f

Please sign in to comment.