Skip to content

Commit

Permalink
Add PHP 8.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
loic425 committed Nov 25, 2024
1 parent 0b33cb1 commit 8eeba10
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 30 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.1", "8.2", "8.3"]
php: ["8.1", "8.2", "8.3", "8.4"]
composer-flags: ['--no-scripts --prefer-stable --prefer-dist']
symfony: ["^5.4", "^6.4"]
symfony: ["^6.4", "^7.1"]
app_env: ["test"]
include:
- php: "8.1"
Expand All @@ -31,9 +31,6 @@ jobs:
- php: "8.1"
symfony: "^5.4"
app_env: "test"
- php: "8.3"
symfony: "^7.0"
app_env: "test_without_hateoas"

steps:
-
Expand Down
50 changes: 25 additions & 25 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@
"doctrine/persistence": "^3.3",
"gedmo/doctrine-extensions": "^3.17.1",
"sylius/registry": "^1.2",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/config": "^6.4 || ^7.1",
"symfony/deprecation-contracts": "^3.5",
"symfony/expression-language": "^5.4 || ^6.4 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/intl": "^5.4 || ^6.4 || ^7.0",
"symfony/security-core": "^5.4 || ^6.4 || ^7.0",
"symfony/security-csrf": "^5.4 || ^6.4 || ^7.0",
"symfony/routing": "^5.4 || ^6.4 || ^7.0",
"symfony/translation": "^5.4 || ^6.4 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/validator": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.1",
"symfony/form": "^6.4 || ^7.1",
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/intl": "^6.4 || ^7.1",
"symfony/security-core": "^6.4 || ^7.1",
"symfony/security-csrf": "^6.4 || ^7.1",
"symfony/routing": "^6.4 || ^7.1",
"symfony/translation": "^6.4 || ^7.1",
"symfony/twig-bundle": "^6.4 || ^7.1",
"symfony/validator": "^6.4 || ^7.1",
"symfony/yaml": "^6.4 || ^7.1",
"webmozart/assert": "^1.11",
"willdurand/negotiation": "^3.1"
},
Expand All @@ -72,17 +72,17 @@
"rector/rector": "^0.18.2",
"sylius-labs/coding-standard": "^4.4",
"sylius/grid-bundle": "^1.13",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/css-selector": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/dotenv": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/stopwatch": "^5.4 || ^6.4 || ^7.0",
"symfony/uid": "^5.4 || ^6.4 || ^7.0",
"symfony/workflow": "^5.4 || ^6.4 || ^7.0",
"symfony/messenger": "^5.4 || ^6.4 || ^7.0",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0",
"symfony/security-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.1",
"symfony/css-selector": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/dotenv": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/stopwatch": "^6.4 || ^7.1",
"symfony/uid": "^6.4 || ^7.1",
"symfony/workflow": "^6.4 || ^7.1",
"symfony/messenger": "^6.4 || ^7.1",
"symfony/serializer": "^6.4 || ^7.1",
"symfony/security-bundle": "^6.4 || ^7.1",
"twig/twig": "^3.14",
"vimeo/psalm": "^5.26",
"willdurand/hateoas-bundle": "^2.5",
Expand All @@ -94,7 +94,7 @@
"friendsofsymfony/rest-bundle": "<3.0",
"jms/serializer-bundle": "<3.5",
"pagerfanta/pagerfanta" : "<4.4",
"willdurand/hateoas-bundle": "<2.0 || ^2.6",
"willdurand/hateoas-bundle": "<2.0 || ^3.0",
"winzou/state-machine-bundle": "<0.6.2",
"twig/twig": "<3.0"
},
Expand Down

0 comments on commit 8eeba10

Please sign in to comment.