Skip to content

Commit fbe8e5c

Browse files
authored
Merge pull request #270 from settermjd/add-php8.4-support
Add PHP 8.4 to the list of allowed PHP versions
2 parents 06bbf9c + 753577f commit fbe8e5c

File tree

6 files changed

+1335
-329
lines changed

6 files changed

+1335
-329
lines changed

.github/workflows/coding-standards.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
matrix:
1515
php-version:
1616
- "8.1"
17+
- "8.2"
18+
- "8.3"
19+
- "8.4"
1720

1821
steps:
1922
- uses: actions/checkout@v2

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
strategy:
1414
matrix:
1515
php-version:
16+
- "8.1"
1617
- "8.2"
18+
- "8.3"
19+
- "8.4"
1720

1821
steps:
1922
- uses: actions/checkout@v2

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
php-version:
2020
- "8.1"
2121
- "8.2"
22+
- "8.3"
23+
- "8.4"
2224

2325
steps:
2426
- uses: actions/checkout@v2

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Minimal Application Factory for Mezzio",
44
"type": "library",
55
"require": {
6-
"php": "8.1.*|8.2.*|8.3.*",
6+
"php": "8.1.*|8.2.*|8.3.*|8.4.*",
77
"laminas/laminas-diactoros": "^3.1",
88
"laminas/laminas-httphandlerrunner": "^2.7",
99
"laminas/laminas-stratigility": "^3.10",
@@ -13,11 +13,11 @@
1313
},
1414
"require-dev": {
1515
"doctrine/coding-standard": "^12.0",
16-
"laminas/laminas-servicemanager": "^4.0@dev",
17-
"mezzio/mezzio-fastroute": "^3.11",
18-
"phpunit/phpunit": "^10.5",
16+
"laminas/laminas-servicemanager": "^4.4",
17+
"mezzio/mezzio-fastroute": "^3.12",
18+
"phpunit/phpunit": "^10.5 || ^12.0",
1919
"psalm/plugin-phpunit": "^0.18.4 || ^0.19.0",
20-
"vimeo/psalm": "^5.17"
20+
"vimeo/psalm": "^6.5"
2121
},
2222
"license": "MIT",
2323
"authors": [

0 commit comments

Comments
 (0)