Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Checkout
uses: actions/checkout@v2

- name: Run the CS fixer
run: php-cs-fixer fix

Expand All @@ -35,7 +35,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3']
php: ['8.0', '8.1', '8.2', '8.3', '8.4']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -47,6 +47,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set composer stability
if: ${{ matrix.php == '8.4' }}
run: composer config minimum-stability ${{ matrix.composer-stability }}

- name: Install the dependencies
run: composer install --no-interaction --no-suggest

Expand All @@ -60,7 +64,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3']
php: ['8.0', '8.1', '8.2', '8.3', '8.4']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
],
"require": {
"php": "^8.0",
"symfony/lock": "^6.0 || ^7.0",
"symfony/cache": "^6.0 || ^7.0",
"symfony/http-foundation": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"symfony/options-resolver": "^6.0 || ^7.0"
"symfony/lock": "^6.0 || ^7.0 || ^8.0",
"symfony/cache": "^6.0 || ^7.0 || ^8.0",
"symfony/http-foundation": "^6.0 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.0 || ^7.0 || ^8.0",
"symfony/options-resolver": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.0 || ^7.0"
"symfony/phpunit-bridge": "^6.0 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading