Skip to content

Commit c34ce05

Browse files
committed
chore: remove unmaintained symfony versions
1 parent c9c8a20 commit c34ce05

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,21 @@ on: [push]
44

55
jobs:
66
build-test:
7-
runs-on: ubuntu-latest
7+
runs-on: 'ubuntu-latest'
88
name: 'PHPUnit (PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} + ${{ matrix.dependencies }} deps, ES ${{ matrix.elasticsearch }})'
99
env:
10-
SYMFONY_REQUIRE: "${{ matrix.symfony }}"
10+
SYMFONY_REQUIRE: "${{ matrix.symfony }}"
1111
strategy:
1212
matrix:
1313
php:
1414
- '7.4'
1515
- '8.0'
1616
- '8.1'
1717
- '8.2'
18+
- '8.3'
1819
symfony:
19-
- '5.4.*'
20-
- '6.3.*'
20+
- '5.4.*'
21+
- '6.4.*'
2122
dependencies:
2223
- 'highest'
2324
include:
@@ -28,7 +29,7 @@ jobs:
2829
dependencies: 'highest'
2930
steps:
3031
- name: 'Checkout'
31-
uses: actions/checkout@v3
32+
uses: 'actions/checkout@v4'
3233

3334
- name: 'Setup PHP'
3435
uses: 'shivammathur/setup-php@v2'
@@ -38,7 +39,7 @@ jobs:
3839
extensions: 'curl, json, intl, mbstring, mongodb, openssl'
3940

4041
- name: 'Install Composer dependencies'
41-
uses : 'ramsey/composer-install@v2'
42+
uses : 'ramsey/composer-install@v3'
4243
with:
4344
dependency-versions: "${{ matrix.dependencies }}"
4445
composer-options: "--no-interaction"

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,30 +25,30 @@
2525
],
2626
"require": {
2727
"php": "^7.4 || ^8.0",
28-
"symfony/form": "^3.0 || ^4.0 || ^5.0 || ^6.0",
29-
"symfony/dependency-injection": "^3.0 || ^4.0 || ^5.0 || ^6.0",
30-
"symfony/config": "^3.0 || ^4.0 || ^5.0 || ^6.0",
31-
"symfony/http-foundation": "^3.0 || ^4.0 || ^5.0 || ^6.0",
32-
"symfony/http-kernel": "^3.0 || ^4.0 || ^5.0 || ^6.0",
33-
"symfony/options-resolver": "^3.0 || ^4.0 || ^5.0 || ^6.0",
34-
"symfony/security-bundle": "^3.0 || ^4.0 || ^5.0 || ^6.0",
35-
"symfony/serializer": "^3.0 || ^4.0 || ^5.0 || ^6.0",
28+
"symfony/form": "^5.4 || ^6.4",
29+
"symfony/dependency-injection": "^5.4 || ^6.4",
30+
"symfony/config": "^5.4 || ^6.4",
31+
"symfony/http-foundation": "^5.4 || ^6.4",
32+
"symfony/http-kernel": "^5.4 || ^6.4",
33+
"symfony/options-resolver": "^5.4 || ^6.4",
34+
"symfony/security-core": "^5.4 || ^6.4",
35+
"symfony/serializer": "^5.4 || ^6.4",
3636
"twig/twig": "^2.14 || ^3.0"
3737
},
3838
"require-dev": {
39-
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0",
40-
"symfony/browser-kit": "^3.0 || ^4.0 || ^5.0 || ^6.0",
41-
"symfony/templating": "^3.0 || ^4.0 || ^5.0 || ^6.0",
42-
"symfony/expression-language": "^3.0 || ^4.0 || ^5.0 || ^6.0",
39+
"symfony/framework-bundle": "^5.4 || ^6.4",
40+
"symfony/browser-kit": "^5.4 || ^6.4",
41+
"symfony/templating": "^5.4 || ^6.4",
42+
"symfony/expression-language": "^5.4 || ^6.4",
4343
"phpunit/phpunit": "^9.5",
4444
"friendsofphp/php-cs-fixer": "^2.0",
4545
"php-coveralls/php-coveralls": "^2.0",
4646
"doctrine/orm": "~2.10,>=2.10.0",
4747
"doctrine/mongodb-odm": "^2.2",
4848
"rector/rector": "^0.12.13",
4949
"dg/bypass-finals": "^1.3",
50-
"symfony/security-bundle": "^3.0 || ^4.0 || ^5.0",
51-
"symfony/twig-bundle": "^3.0 || ^4.0 || ^5.0",
50+
"symfony/security-bundle": "^5.4 || ^6.4",
51+
"symfony/twig-bundle": "^5.4 || ^6.4",
5252
"doctrine/doctrine-bundle": "^2.5"
5353
},
5454
"suggest": {

0 commit comments

Comments
 (0)