Skip to content

Commit fe9abf8

Browse files
committed
Require Symfony 7.4
1 parent f248fe5 commit fe9abf8

3 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: ['8.4']
13-
symfony: ['6.4.*', '7.3.*']
12+
php: ['8.4', '8.5']
13+
symfony: ['7.4.*@beta']
1414
composer-flags: ['--prefer-stable']
1515
can-fail: [false]
1616
include:
1717
- php: '8.4'
18-
symfony: '6.4.*'
18+
symfony: '7.4.*@beta'
1919
composer-flags: '--prefer-stable --prefer-lowest'
2020
can-fail: false
2121
- php: '8.5'
22-
symfony: '7.4.*@dev'
22+
symfony: '8.0.*@beta'
2323
composer-flags: '--prefer-stable'
2424
can-fail: true
2525

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: composer update --prefer-stable --prefer-dist
2525
env:
26-
SYMFONY_REQUIRE: '7.3.*'
26+
SYMFONY_REQUIRE: '7.4.*@beta'
2727

2828
- name: Run PHPStan
2929
run: vendor/bin/phpstan analyze --error-format=github

composer.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@
1313
"php": "8.4.* || 8.5.*",
1414
"ext-pcntl": "*",
1515
"babdev/websocket-server": "0.1.*",
16-
"symfony/config": "^6.4 || ^7.3",
17-
"symfony/console": "^6.4 || ^7.3",
18-
"symfony/dependency-injection": "^6.4 || ^7.3",
16+
"symfony/config": "^7.4 || ^8.0",
17+
"symfony/console": "^7.4 || ^8.0",
18+
"symfony/dependency-injection": "^7.4 || ^8.0",
1919
"symfony/deprecation-contracts": "^2.1 || ^3.0",
20-
"symfony/event-dispatcher": "^6.4 || ^7.3",
20+
"symfony/event-dispatcher": "^7.4 || ^8.0",
2121
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
22-
"symfony/framework-bundle": "^6.4 || ^7.3",
23-
"symfony/http-kernel": "^6.4 || ^7.3",
24-
"symfony/routing": "^6.4 || ^7.3",
25-
"symfony/security-core": "^6.4 || ^7.3"
22+
"symfony/framework-bundle": "^7.4 || ^8.0",
23+
"symfony/http-kernel": "^7.4 || ^8.0",
24+
"symfony/routing": "^7.4 || ^8.0",
25+
"symfony/security-core": "^7.4 || ^8.0"
2626
},
2727
"require-dev": {
28-
"doctrine/dbal": "^3.4 || ^4.0",
29-
"doctrine/doctrine-bundle": "^2.7 || ^3.0",
30-
"fig/log-test": "^1.1",
28+
"doctrine/dbal": "^3.10 || ^4.0",
29+
"doctrine/doctrine-bundle": "^2.18 || ^3.0",
30+
"fig/log-test": "^1.2",
3131
"guzzlehttp/psr7": "^2.4",
3232
"matthiasnoback/symfony-config-test": "^6.1",
3333
"matthiasnoback/symfony-dependency-injection-test": "^6.1",
34-
"phpstan/extension-installer": "^1.2",
34+
"phpstan/extension-installer": "^1.4.3",
3535
"phpstan/phpstan": "2.1.31",
3636
"phpstan/phpstan-phpunit": "2.0.7",
3737
"phpstan/phpstan-symfony": "2.0.8",
@@ -43,21 +43,21 @@
4343
"ratchet/rfc6455": "^0.4",
4444
"react/event-loop": "^1.5",
4545
"rector/rector": "2.2.6",
46-
"symfony/cache": "^6.4 || ^7.3",
47-
"symfony/http-foundation": "^6.4 || ^7.3",
48-
"symfony/phpunit-bridge": "^6.4 || ^7.3"
46+
"symfony/cache": "^7.4 || ^8.0",
47+
"symfony/http-foundation": "^7.4 || ^8.0",
48+
"symfony/phpunit-bridge": "^7.4 || ^8.0"
4949
},
5050
"conflict": {
51-
"doctrine/dbal": "<3.4 || >=5.0",
52-
"doctrine/doctrine-bundle": "<2.7 || >=4.0",
51+
"doctrine/dbal": "<3.10 || >=5.0",
52+
"doctrine/doctrine-bundle": "<2.18 || >=4.0",
5353
"psr/cache": ">=4.0",
5454
"psr/container": ">=3.0",
5555
"psr/http-message": ">=3.0",
5656
"psr/log": ">=4.0",
5757
"ratchet/rfc6455": "<0.4 || >=0.5",
5858
"react/event-loop": "<1.5 || >=2.0",
59-
"symfony/cache": "<6.4 || >=7.0,<7.3 || >=8.0",
60-
"symfony/http-foundation": "<6.4 || >=7.0,<7.3 || >=8.0"
59+
"symfony/cache": "<7.4 || >=9.0",
60+
"symfony/http-foundation": "<7.4 || >=9.0"
6161
},
6262
"autoload": {
6363
"psr-4": {

0 commit comments

Comments
 (0)