Skip to content

Commit

Permalink
Merge pull request #105 from morawskim/symfony7
Browse files Browse the repository at this point in the history
Support Symfony 7
  • Loading branch information
wjzijderveld authored Mar 28, 2024
2 parents 9009e7e + 690f607 commit a172d19
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,26 @@ jobs:
- "4.4.20"
- "5.3"
- "5.4"
- "6.0"
- "6.3"
- "6.4"
- "7.0"
exclude:
# Symfony 6 requires PHP 8+
# Symfony 6.1+ requires PHP 8.1+
- php-version: '7.4'
symfony-version: '6.0'
symfony-version: '6.3'
- php-version: '8.0'
symfony-version: '6.3'
- php-version: '7.4'
symfony-version: '6.4'
- php-version: '8.0'
symfony-version: '6.4'
# Symfony 7 requires PHP 8.2+
- php-version: '7.4'
symfony-version: '7.0'
- php-version: '8.0'
symfony-version: '7.0'
- php-version: '8.1'
symfony-version: '7.0'
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
"require": {
"php": "^7.4 || ^8.0",
"broadway/broadway": "^2.2.1",
"symfony/console": "^4.4 || ^5.3 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.3 || ^6.0"
"symfony/console": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.3 || ^6.0 || ^7.0"
},
"require-dev": {
"broadway/broadway-saga": "^1.0",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"matthiasnoback/symfony-config-test": "^4.0 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
"monolog/monolog": "~2.0",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^4.4 || ^5.3 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/proxy-manager-bridge": "^4.4 || ^5.3 || ^6.0",
"phpstan/phpstan-symfony": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
Expand Down

0 comments on commit a172d19

Please sign in to comment.