Skip to content

Commit

Permalink
Merge pull request #270 from settermjd/add-php8.4-support
Browse files Browse the repository at this point in the history
Add PHP 8.4 to the list of allowed PHP versions
  • Loading branch information
asgrim authored Feb 12, 2025
2 parents 06bbf9c + 753577f commit fbe8e5c
Show file tree
Hide file tree
Showing 6 changed files with 1,335 additions and 329 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Minimal Application Factory for Mezzio",
"type": "library",
"require": {
"php": "8.1.*|8.2.*|8.3.*",
"php": "8.1.*|8.2.*|8.3.*|8.4.*",
"laminas/laminas-diactoros": "^3.1",
"laminas/laminas-httphandlerrunner": "^2.7",
"laminas/laminas-stratigility": "^3.10",
Expand All @@ -13,11 +13,11 @@
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"laminas/laminas-servicemanager": "^4.0@dev",
"mezzio/mezzio-fastroute": "^3.11",
"phpunit/phpunit": "^10.5",
"laminas/laminas-servicemanager": "^4.4",
"mezzio/mezzio-fastroute": "^3.12",
"phpunit/phpunit": "^10.5 || ^12.0",
"psalm/plugin-phpunit": "^0.18.4 || ^0.19.0",
"vimeo/psalm": "^5.17"
"vimeo/psalm": "^6.5"
},
"license": "MIT",
"authors": [
Expand Down
Loading

0 comments on commit fbe8e5c

Please sign in to comment.