Skip to content

Commit 6bfffda

Browse files
committed
Drop PHP 8.2 and Symfony 7.1
1 parent b69dd55 commit 6bfffda

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/run-tests.yml

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

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
1717
with:
18-
php-version: '8.3'
18+
php-version: '8.4'
1919
tools: composer:v2,flex
2020
extensions: curl, iconv, mbstring, zip
2121
coverage: none
2222

2323
- name: Install dependencies
2424
run: composer update --prefer-stable --prefer-dist
2525
env:
26-
SYMFONY_REQUIRE: '7.2.*@beta'
26+
SYMFONY_REQUIRE: '7.2.*'
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.* || 8.4.*",
13+
"php": "8.3.* || 8.4.*",
1414
"ext-pcntl": "*",
1515
"babdev/websocket-server": "0.1.*",
16-
"symfony/config": "^6.4 || ^7.1",
17-
"symfony/console": "^6.4 || ^7.1",
18-
"symfony/dependency-injection": "^6.4 || ^7.1",
16+
"symfony/config": "^6.4 || ^7.2",
17+
"symfony/console": "^6.4 || ^7.2",
18+
"symfony/dependency-injection": "^6.4 || ^7.2",
1919
"symfony/deprecation-contracts": "^2.1 || ^3.0",
20-
"symfony/event-dispatcher": "^6.4 || ^7.1",
20+
"symfony/event-dispatcher": "^6.4 || ^7.2",
2121
"symfony/event-dispatcher-contracts": "^2.0 || ^3.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"
22+
"symfony/framework-bundle": "^6.4 || ^7.2",
23+
"symfony/http-kernel": "^6.4 || ^7.2",
24+
"symfony/routing": "^6.4 || ^7.2",
25+
"symfony/security-core": "^6.4 || ^7.2"
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.1",
45-
"symfony/http-foundation": "^6.4 || ^7.1",
46-
"symfony/phpunit-bridge": "^6.4 || ^7.1"
44+
"symfony/cache": "^6.4 || ^7.2",
45+
"symfony/http-foundation": "^6.4 || ^7.2",
46+
"symfony/phpunit-bridge": "^6.4 || ^7.2"
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 || >=7.0,<7.1 || >=8.0",
57-
"symfony/http-foundation": "<6.4 || >=7.0,<7.1 || >=8.0"
56+
"symfony/cache": "<6.4 || >=7.0,<7.2 || >=8.0",
57+
"symfony/http-foundation": "<6.4 || >=7.0,<7.2 || >=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.4 | 6.4, 7.1-7.2 |
18+
| 1.x | In Development | 8.3-8.4 | 6.4, 7.2 |

0 commit comments

Comments
 (0)