Skip to content

Commit 8c3f099

Browse files
fix: Allow symfony console 8.0, require php 8.3
1 parent f27fe84 commit 8c3f099

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
matrix:
1919
dependencies: ["lowest", "highest"]
2020
php-version:
21-
- "8.2"
2221
- "8.3"
2322

2423
steps:

.github/workflows/code_coverage.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: shivammathur/setup-php@master
1616
with:
17-
php-version: 8.2
17+
php-version: 8.3
1818
coverage: xdebug
1919
- name: Load dependencies from cache
2020
id: composer-cache
@@ -23,9 +23,9 @@ jobs:
2323
- uses: actions/cache@v4
2424
with:
2525
path: ${{ steps.composer-cache.outputs.dir }}
26-
key: ${{ runner.os }}-php8.2-composer-${{ hashFiles('**/composer.json') }}
26+
key: ${{ runner.os }}-php8.3-composer-${{ hashFiles('**/composer.json') }}
2727
restore-keys: |
28-
${{ runner.os }}-php8.2-composer-
28+
${{ runner.os }}-php8.3-composer-
2929
3030
- run: composer install --prefer-dist --no-progress --no-suggest
3131
- run: php vendor/bin/phpunit --coverage-clover build/logs/clover.xml

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
}
1515
},
1616
"require": {
17-
"php": "^8.2",
18-
"symfony/console": "^6.0|^7.0",
17+
"php": "^8.3",
18+
"symfony/console": "^7.4|^8.0",
1919
"doctrine/dbal": "^3.1|^4.0"
2020
},
2121
"require-dev": {

0 commit comments

Comments
 (0)