Skip to content

Commit e8bcc5c

Browse files
authored
Merge pull request #34 from Bee-Lab/sf8
⬆️ allow Symfony 8
2 parents cfacce0 + 3e2c1d4 commit e8bcc5c

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,16 @@ jobs:
4545
- description: 'Symfony 7.4'
4646
php: '8.4'
4747
symfony: '7.4.*@dev'
48+
- description: 'Symfony 8.0'
49+
php: '8.5'
50+
symfony: '8.0.*@dev'
4851
name: PHP ${{ matrix.php }} tests (${{ matrix.description }})
4952
steps:
5053
- name: Checkout
5154
uses: actions/checkout@v4
5255
- name: Cache
53-
uses: actions/cache@v3
54-
with:
56+
uses: actions/cache@v4
57+
with:
5558
path: ~/.composer/cache/files
5659
key: ${{ matrix.php }}-${{ matrix.symfony }}-${{ matrix.composer_option }}
5760
- name: Setup PHP

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
],
1717
"require": {
1818
"php": "^8.2",
19-
"symfony/browser-kit": "^6.4 || ^7.0",
20-
"symfony/console": "^6.4 || ^7.0",
21-
"symfony/css-selector": "^6.4 || ^7.0",
22-
"symfony/dependency-injection": "^6.4 || ^7.0",
23-
"symfony/dom-crawler": "^6.4 || ^7.0"
19+
"symfony/browser-kit": "^6.4 || ^7.0 || ^8.0",
20+
"symfony/console": "^6.4 || ^7.0 || ^8.0",
21+
"symfony/css-selector": "^6.4 || ^7.0 || ^8.0",
22+
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
23+
"symfony/dom-crawler": "^6.4 || ^7.0 || ^8.0"
2424
},
2525
"require-dev": {
2626
"mikey179/vfsstream": "^1.6.7",
27-
"phpunit/phpunit": "^10.6 || ^11.4",
28-
"symfony/framework-bundle": "^6.4 || ^7.0",
29-
"symfony/mime": "^6.4 || ^7.0",
30-
"symfony/process": "^6.4 || ^7.0",
31-
"symfony/security-core": "^6.4 || ^7.0"
27+
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.3",
28+
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
29+
"symfony/mime": "^6.4 || ^7.0 || ^8.0",
30+
"symfony/process": "^6.4 || ^7.0 || ^8.0",
31+
"symfony/security-core": "^6.4 || ^7.0 || ^8.0"
3232
},
3333
"config": {
3434
"bin-dir": "bin",

0 commit comments

Comments
 (0)