Skip to content

Commit

Permalink
Merge pull request #25 from infection/feature/symfony-7-php-83
Browse files Browse the repository at this point in the history
Add support for PHP 8.3, Symfony 7
  • Loading branch information
maks-rafalko committed Dec 9, 2023
2 parents 45e8d50 + 7b3d81f commit 0287d13
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ jobs:

strategy:
matrix:
php-version: [ '8.1', '8.2' ]
php-version: [ '8.1', '8.2', '8.3' ]
coverage-driver: [ pcov ]
symfony-require: [ '^5', '^6' ]
symfony-require: [ '^5', '^6', '^7' ]
exclude:
- php-version: '8.1'
symfony-require: '^7'

name: CI with PHP ${{ matrix.php-version }}, using ${{ matrix.coverage-driver }}, with Symfony ${{ matrix.symfony-require }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
php-version: [ '8.1', '8.2' ]
php-version: [ '8.1', '8.2', '8.3' ]
coverage-driver: [ pcov ]

name: CI with PHP ${{ matrix.php-version }}, using ${{ matrix.coverage-driver }}
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"php": "^8.1",
"infection/abstract-testframework-adapter": "^0.5.0",
"infection/include-interceptor": "^0.2.0",
"symfony/filesystem": "^5.0 || ^6.0",
"symfony/process": "^5.0 || ^6.0",
"symfony/yaml": "^5.0 || ^6.0"
"symfony/filesystem": "^5.0 || ^6.0 || ^7.0",
"symfony/process": "^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^5.0 || ^6.0 || ^7.0"
},
"extra": {
"infection": {
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0287d13

Please sign in to comment.