Skip to content

Commit 41fb51d

Browse files
authored
Merge pull request #645 from lcobucci/support-php-8.3
Support PHP 8.3
2 parents efc6247 + dc7fe92 commit 41fb51d

22 files changed

+543
-788
lines changed

.github/workflows/phpunit.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- "development"
2020
php-version:
2121
- "8.1"
22+
- "8.2"
23+
- "8.3"
2224
operating-system:
2325
- "ubuntu-latest"
2426

@@ -73,7 +75,7 @@ jobs:
7375
dependencies:
7476
- "locked"
7577
php-version:
76-
- "8.2"
78+
- "8.4"
7779
operating-system:
7880
- "ubuntu-latest"
7981

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/vendor/
2-
/.phpcs.cache
2+
/*.cache
33
/infection.log
4-
/.phpunit.result.cache
54
/build

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,26 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.1.0 || ~8.2.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
1414
"ext-json": "*",
1515
"fig/http-message-util": "^1.1.5",
1616
"psr/http-factory": "^1.0.2",
17-
"psr/http-message": "^1.1.0",
17+
"psr/http-message": "^1.1 || ^2.0",
1818
"psr/http-server-middleware": "^1.0.2"
1919
},
2020
"require-dev": {
2121
"infection/infection": "^0.27",
2222
"jms/serializer": "^3.26.0",
2323
"laminas/laminas-diactoros": "^3.0.0",
24-
"lcobucci/coding-standard": "^9.0",
24+
"lcobucci/coding-standard": "^11.0",
2525
"league/plates": "^3.5.0",
2626
"middlewares/negotiation": "^2.1",
2727
"phpstan/extension-installer": "^1.3.1",
2828
"phpstan/phpstan": "^1.10.23",
2929
"phpstan/phpstan-deprecation-rules": "^1.1.3",
3030
"phpstan/phpstan-phpunit": "^1.3.13",
3131
"phpstan/phpstan-strict-rules": "^1.5.1",
32-
"phpunit/phpunit": "^9.6.9",
32+
"phpunit/phpunit": "^10.4",
3333
"twig/twig": "^3.6.1"
3434
},
3535
"suggest": {

0 commit comments

Comments
 (0)