Skip to content

Commit cc58210

Browse files
committed
allow installation with symfony 8
1 parent fbcdd18 commit cc58210

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ $ composer show --latest 'symfony-cmf/*'
3939
If it's an error message or piece of code, use code block tags,
4040
and make sure you provide the whole stack trace(s),
4141
not just the first error message you can see.
42-
More details here: https://github.com/symfony-cmf/Testing/blob/master/CONTRIBUTING.md#issues
42+
More details here: https://github.com/symfony-cmf/Testing/blob/5.x/CONTRIBUTING.md#issues
4343
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Q | A
22
| ------------- | ---
3-
| Branch? | "master" for new features / the branch of the current release for fixes
3+
| Branch? | branch of the next release for new features / the branch of the current release for fixes
44
| Bug fix? | yes/no
55
| New feature? | yes/no
66
| BC breaks? | yes/no

.github/workflows/test-application.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
test:
1313
name: 'PHP ${{ matrix.php-version }}, Symfony ${{ matrix.symfony-version }} ${{ matrix.dependencies}}'
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515

1616
env:
1717
SYMFONY_DEPRECATIONS_HELPER: weak
@@ -27,6 +27,8 @@ jobs:
2727
- php-version: '8.1'
2828
- php-version: '8.2'
2929
- php-version: '8.3'
30+
- php-version: '8.4'
31+
- php-version: '8.5'
3032

3133
steps:
3234
- name: Checkout project

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@
1111
"require": {
1212
"php": "^8.1",
1313
"doctrine/data-fixtures": "^1.2",
14-
"symfony/browser-kit": "^6.4 || ^7.0"
14+
"symfony/browser-kit": "^6.4 || ^7.0 || ^8.0"
1515
},
1616
"require-dev": {
1717
"ext-dom": "*",
1818
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
1919
"doctrine/phpcr-odm": "^2.0",
2020
"doctrine/phpcr-bundle": "^3.0",
2121
"jackalope/jackalope-doctrine-dbal": "^2.0",
22-
"symfony/console": "^6.4 || ^7.0",
23-
"symfony/dependency-injection": "^6.4 || ^7.0",
24-
"symfony/doctrine-bridge": "^6.4 || ^7.0",
25-
"symfony/framework-bundle": "^6.4 || ^7.0",
26-
"symfony/http-kernel": "^6.4 || ^7.0",
22+
"symfony/console": "^6.4 || ^7.0 || ^8.0",
23+
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
24+
"symfony/doctrine-bridge": "^6.4 || ^7.0 || ^8.0",
25+
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
26+
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
2727
"symfony/monolog-bundle": "^3.5",
28-
"symfony/security-bundle": "^6.4 || ^7.0",
29-
"symfony/twig-bundle": "^6.4 || ^7.0",
28+
"symfony/security-bundle": "^6.4 || ^7.0 || ^8.0",
29+
"symfony/twig-bundle": "^6.4 || ^7.0 || ^8.0",
3030
"symfony/phpunit-bridge": "^7.0.3"
3131
},
3232
"conflict": {

0 commit comments

Comments
 (0)