Skip to content

Commit d236fd2

Browse files
authored
Add support for Symfony 8 (#13)
1 parent 69d2761 commit d236fd2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- php: "8.2"
2020
- php: "8.3"
2121
- php: "8.4"
22+
composer-stability: beta
2223
steps:
2324
- name: Checkout source
2425
uses: actions/checkout@v4
@@ -27,6 +28,9 @@ jobs:
2728
with:
2829
php-version: ${{ matrix.php }}
2930
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On, log_errors_max_len=0
31+
- name: Configure Composer minimum-stability
32+
if: matrix.composer-stability
33+
run: composer config minimum-stability ${{ matrix.composer-stability }}
3034
- name: "Update composer dependencies"
3135
run: composer update -o --no-interaction --no-progress ${{ matrix.COMPOSER_FLAGS }}
3236
- name: Tests

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": "^7.4 || ^8.0",
14-
"symfony/process": "^5.4 || ^6.4 || ^7.2"
14+
"symfony/process": "^5.4 || ^6.4 || ^7.2 || ^8.0"
1515
},
1616
"require-dev": {
1717
"friendsofphp/php-cs-fixer": "^3.75",

0 commit comments

Comments
 (0)