Skip to content

Commit 1f1ca76

Browse files
authored
Merge pull request #196 from phpcr/feature/symfony-6
Allow Symfony 6
2 parents aba3bd1 + 2669c53 commit 1f1ca76

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/test-application.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
test:
14-
name: 'PHP ${{ matrix.php-version }} ${{ matrix.dependencies}}'
14+
name: "PHP ${{ matrix.php-version }} ${{ matrix.dependencies }} ${{ matrix.dev-dependencies && 'dev' }}"
1515
runs-on: ubuntu-20.04
1616

1717
strategy:
@@ -22,6 +22,8 @@ jobs:
2222
dependencies: 'lowest'
2323
- php-version: '7.4'
2424
- php-version: '8.0'
25+
- php-version: '8.0'
26+
dev-dependencies: true
2527

2628
steps:
2729
- name: Checkout project
@@ -33,6 +35,10 @@ jobs:
3335
php-version: ${{ matrix.php-version }}
3436
tools: 'composer:v2'
3537

38+
- name: Allow unstable dependencies
39+
if: matrix.dev-dependencies == true
40+
run: composer config minimum-stability dev
41+
3642
- name: Install dependencies with Composer
3743
uses: ramsey/composer-install@v1
3844
with:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"require": {
3030
"php": "^7.1 || ^8.0",
3131
"phpcr/phpcr": "~2.1.0",
32-
"symfony/console": "^2.3 || ^3.0 || ^4.0 || ^5.0"
32+
"symfony/console": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
3333
},
3434
"require-dev": {
3535
"ramsey/uuid": "^3.5",

0 commit comments

Comments
 (0)