Skip to content

Commit af73003

Browse files
authored
Merge pull request #536 from Chris53897/feature/symfony-8-new
feat: allow symfony 8
2 parents d7073f1 + 3f76cdd commit af73003

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
- description: 'Symfony 7.2 DEV'
3636
php: '8.2'
3737
symfony: '7.2.*@dev'
38+
- description: 'Symfony 8.0'
39+
php: '8.5'
40+
symfony: '8.0.*'
3841
- description: 'Symfony 7.0'
3942
php: '8.5'
4043
symfony: '7.0.*'
@@ -83,7 +86,7 @@ jobs:
8386
if: contains(matrix.symfony, '7.2.*@dev') || contains(matrix.symfony, '7.0.*')
8487
run: |
8588
composer remove --dev friendsofphp/php-cs-fixer pedrotroller/php-cs-custom-fixer --no-update
86-
- run: composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
89+
- run: composer update --prefer-dist --no-interaction --no-progress --no-security-blocking --ansi ${{ matrix.composer_option }}
8790
- run: vendor/bin/phpunit
8891
- run: vendor/bin/phpstan analyse --ansi --no-progress
8992
tests-windows:
@@ -95,6 +98,9 @@ jobs:
9598
- description: 'Symfony 7.2 DEV'
9699
php: '8.2'
97100
symfony: '7.2.*@dev'
101+
- description: 'Symfony 8.0'
102+
php: '8.4'
103+
symfony: '8.0.*'
98104
- description: 'Symfony 7.0'
99105
php: '8.4'
100106
symfony: '7.0.*'
@@ -134,6 +140,6 @@ jobs:
134140
if: contains(matrix.symfony, '7.2.*@dev') || contains(matrix.symfony, '7.0.*')
135141
run: |
136142
composer remove --dev friendsofphp/php-cs-fixer pedrotroller/php-cs-custom-fixer --no-update
137-
- run: composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
143+
- run: composer update --prefer-dist --no-interaction --no-progress --no-security-blocking --ansi ${{ matrix.composer_option }}
138144
- run: vendor/bin/phpunit
139145
- run: vendor/bin/phpstan analyse --ansi --no-progress

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=8.1",
20-
"symfony/process": "^5.0||^6.0||^7.0",
20+
"symfony/process": "^5.0||^6.0||^7.0||^8.0",
2121
"psr/log": "^2.0||^3.0"
2222
},
2323
"require-dev": {

0 commit comments

Comments
 (0)