Skip to content

Commit

Permalink
feat: support Symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Nov 3, 2023
1 parent 88c4da6 commit 7d4c536
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 28 deletions.
23 changes: 1 addition & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,7 @@ on:

jobs:
tests:
name: PHP ${{ matrix.php }}, SF ${{ matrix.symfony }} - ${{ matrix.deps }}
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 8.0, 8.1, 8.2, 8.3 ]
deps: [ highest ]
symfony: [ 5.4.*, 6.3.*, 6.4.* ]
include:
- php: 8.0
deps: lowest
symfony: '*'
exclude:
- php: 8.0
symfony: 6.3.*
- php: 8.0
symfony: 6.4.*
steps:
- uses: zenstruck/.github@php-test-symfony
with:
php: ${{ matrix.php }}
symfony: ${{ matrix.symfony }}
deps: ${{ matrix.deps }}
uses: zenstruck/.github/.github/workflows/php-test-symfony.yml@main

code-coverage:
uses: zenstruck/.github/.github/workflows/php-coverage-codecov.yml@main
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"php": ">=8.0",
"doctrine/doctrine-bundle": "^2.6",
"doctrine/orm": "^2.6",
"symfony/framework-bundle": "^5.4|^6.0"
"symfony/framework-bundle": "^5.4|^6.0|^7.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"symfony/browser-kit": "^5.4|^6.0",
"symfony/form": "^5.4|^6.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/translation": "^5.4|^6.0",
"symfony/validator": "^5.4|^6.0",
"symfony/browser-kit": "^5.4|^6.0|^7.0",
"symfony/form": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^6.0|^7.0",
"symfony/translation": "^5.4|^6.0|^7.0",
"symfony/validator": "^5.4|^6.0|^7.0",
"zenstruck/foundry": "^1.36",
"phpunit/phpunit": "9.6.13",
"zenstruck/browser": "^1.6"
Expand Down

0 comments on commit 7d4c536

Please sign in to comment.