Skip to content

Commit

Permalink
Merge pull request #645 from lcobucci/support-php-8.3
Browse files Browse the repository at this point in the history
Support PHP 8.3
  • Loading branch information
lcobucci committed Nov 22, 2023
2 parents efc6247 + dc7fe92 commit 41fb51d
Show file tree
Hide file tree
Showing 22 changed files with 543 additions and 788 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
- "development"
php-version:
- "8.1"
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"

Expand Down Expand Up @@ -73,7 +75,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.2"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/vendor/
/.phpcs.cache
/*.cache
/infection.log
/.phpunit.result.cache
/build
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"fig/http-message-util": "^1.1.5",
"psr/http-factory": "^1.0.2",
"psr/http-message": "^1.1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-middleware": "^1.0.2"
},
"require-dev": {
"infection/infection": "^0.27",
"jms/serializer": "^3.26.0",
"laminas/laminas-diactoros": "^3.0.0",
"lcobucci/coding-standard": "^9.0",
"lcobucci/coding-standard": "^11.0",
"league/plates": "^3.5.0",
"middlewares/negotiation": "^2.1",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.23",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^9.6.9",
"phpunit/phpunit": "^10.4",
"twig/twig": "^3.6.1"
},
"suggest": {
Expand Down

0 comments on commit 41fb51d

Please sign in to comment.