Skip to content

Commit 9aa4448

Browse files
authored
Merge pull request #228 from Chris53897/feature/symfony-8
feat: allow symfony 8
2 parents 3c28c4f + 53f7910 commit 9aa4448

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,19 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [8.4, 8.3, 8.2, 8.1]
12+
php: [8.5, 8.4, 8.3, 8.2, 8.1]
1313
stability: [prefer-lowest, prefer-stable]
14+
include:
15+
- os: ubuntu-latest
16+
php: '8.5'
17+
stability: 'no-suggest'
1418

1519
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}
1620

1721
steps:
1822
- name: Checkout code
1923
uses: actions/checkout@v5
20-
24+
2125
- uses: oven-sh/setup-bun@v2
2226
with:
2327
bun-version: latest
@@ -35,9 +39,9 @@ jobs:
3539
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3640
- name: Install dependencies
3741
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
38-
42+
3943
- name: Install dependencies
4044
run: bun install
41-
45+
4246
- name: Execute tests
4347
run: vendor/bin/phpunit

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
"ext-libxml": "*",
2727
"composer-runtime-api": "^2.0",
2828
"phpunit/phpunit": "^10.0|^11.0|^12.0",
29-
"symfony/property-access": "^5.2|^6.2|^7.0",
30-
"symfony/serializer": "^5.2|^6.2|^7.0",
31-
"symfony/yaml": "^5.2|^6.2|^7.0"
29+
"symfony/property-access": "^5.2|^6.2|^7.0|^8.0",
30+
"symfony/serializer": "^5.2|^6.2|^7.0|^8.0",
31+
"symfony/yaml": "^5.2|^6.2|^7.0|^8.0"
3232
},
3333
"require-dev": {
3434
"spatie/pixelmatch-php": "dev-main",
@@ -54,7 +54,7 @@
5454
"sort-packages": true
5555
},
5656
"minimum-stability": "dev",
57-
"prefer-stable": true,
57+
"prefer-stable": false,
5858
"extra": {
5959
"branch-alias": {
6060
"dev-v5": "5.0-dev"

0 commit comments

Comments
 (0)