Skip to content

Commit 6a1e8bf

Browse files
authored
Merge pull request #21 from chrisjenkinson/patch-1
Allow symfony 7
2 parents 732943e + 0471a85 commit 6a1e8bf

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
php-version: ['7.4', '8.0', '8.1']
21+
php-version: ['7.4', '8.0', '8.1', '8.2']
2222
coverage-driver: [pcov]
23-
symfony-require: ['^4', '^5', '^6']
23+
symfony-require: ['^4', '^5', '^6', '^7']
2424
exclude:
2525
- symfony-require: "^6"
26-
php-version: "7.4"
26+
php-version: "<8.0.2"
27+
- symfony-require: "^7"
28+
php-version: "<8.2.0"
2729

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

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
"php": "^7.4 || ^8.0",
3333
"infection/abstract-testframework-adapter": "^0.5.0",
3434
"infection/include-interceptor": "^0.2.3",
35-
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0",
36-
"symfony/process": "^4.4 || ^5.0 || ^6.0",
37-
"symfony/yaml": "^4.4 || ^5.0 || ^6.0"
35+
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0 || ^7.0",
36+
"symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0",
37+
"symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0"
3838
},
3939
"extra": {
4040
"infection": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)