Skip to content

Commit 29b9d36

Browse files
committed
Allow PHP 8.4, drop Symfony 7.0, test on 7.2 beta
1 parent 016d8b6 commit 29b9d36

4 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: ['8.2', '8.3']
13-
symfony: ['6.4.*', '7.0.*', '7.1.*']
12+
php: ['8.2', '8.3', '8.4']
13+
symfony: ['6.4.*', '7.1.*', '7.2.*@beta']
1414
composer-flags: ['--prefer-stable']
1515
can-fail: [false]
1616
include:

.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.1.*'
26+
SYMFONY_REQUIRE: '7.2.*@beta'
2727

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

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
],
1111
"license": "MIT",
1212
"require": {
13-
"php": "8.2.* || 8.3.*",
13+
"php": "8.2.* || 8.3.* || 8.4.*",
1414
"ext-pcntl": "*",
1515
"babdev/websocket-server": "0.1.*",
16-
"symfony/config": "^6.4 || ^7.0",
17-
"symfony/console": "^6.4 || ^7.0",
18-
"symfony/dependency-injection": "^6.4 || ^7.0",
16+
"symfony/config": "^6.4 || ^7.1",
17+
"symfony/console": "^6.4 || ^7.1",
18+
"symfony/dependency-injection": "^6.4 || ^7.1",
1919
"symfony/deprecation-contracts": "^2.1 || ^3.0",
20-
"symfony/event-dispatcher": "^6.4 || ^7.0",
20+
"symfony/event-dispatcher": "^6.4 || ^7.1",
2121
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
22-
"symfony/framework-bundle": "^6.4 || ^7.0",
23-
"symfony/http-kernel": "^6.4 || ^7.0",
24-
"symfony/routing": "^6.4 || ^7.0",
25-
"symfony/security-core": "^6.4 || ^7.0"
22+
"symfony/framework-bundle": "^6.4 || ^7.1",
23+
"symfony/http-kernel": "^6.4 || ^7.1",
24+
"symfony/routing": "^6.4 || ^7.1",
25+
"symfony/security-core": "^6.4 || ^7.1"
2626
},
2727
"require-dev": {
2828
"doctrine/dbal": "^3.4 || ^4.0",
@@ -41,9 +41,9 @@
4141
"ratchet/rfc6455": "^0.3.1",
4242
"react/event-loop": "^1.3",
4343
"rector/rector": "1.2.10",
44-
"symfony/cache": "^6.4 || ^7.0",
45-
"symfony/http-foundation": "^6.4 || ^7.0",
46-
"symfony/phpunit-bridge": "^6.4 || ^7.0"
44+
"symfony/cache": "^6.4 || ^7.1",
45+
"symfony/http-foundation": "^6.4 || ^7.1",
46+
"symfony/phpunit-bridge": "^6.4 || ^7.1"
4747
},
4848
"conflict": {
4949
"doctrine/dbal": "<3.4 || >=5.0",
@@ -53,8 +53,8 @@
5353
"psr/log": ">=4.0",
5454
"ratchet/rfc6455": "<0.3.1 || >=0.4",
5555
"react/event-loop": "<1.3 || >=2.0",
56-
"symfony/cache": "<6.4 || >=8.0",
57-
"symfony/http-foundation": "<6.4 || >=8.0"
56+
"symfony/cache": "<6.4 || >=7.0,<7.1 || >=8.0",
57+
"symfony/http-foundation": "<6.4 || >=7.0,<7.1 || >=8.0"
5858
},
5959
"autoload": {
6060
"psr-4": {

docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ The below table shows the supported PHP and Symfony versions for this bundle.
1515

1616
| Version | Status | PHP Versions | Symfony Versions |
1717
|---------|----------------|--------------|------------------|
18-
| 1.x | In Development | 8.2-8.3 | 6.4, 7.0 |
18+
| 1.x | In Development | 8.2-8.4 | 6.4, 7.1-7.2 |

0 commit comments

Comments
 (0)