Skip to content

Commit

Permalink
chore: remove unmaintained symfony versions
Browse files Browse the repository at this point in the history
  • Loading branch information
deguif committed Jun 10, 2024
1 parent c9c8a20 commit 1f79282
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@ on: [push]

jobs:
build-test:
runs-on: ubuntu-latest
runs-on: 'ubuntu-latest'
name: 'PHPUnit (PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} + ${{ matrix.dependencies }} deps, ES ${{ matrix.elasticsearch }})'
env:
SYMFONY_REQUIRE: "${{ matrix.symfony }}"
SYMFONY_REQUIRE: "${{ matrix.symfony }}"
strategy:
matrix:
php:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
symfony:
- '5.4.*'
- '6.3.*'
- '5.4.*'
- '6.4.*'
dependencies:
- 'highest'
include:
Expand All @@ -28,7 +29,7 @@ jobs:
dependencies: 'highest'
steps:
- name: 'Checkout'
uses: actions/checkout@v3
uses: 'actions/checkout@v4'

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

- name: 'Install Composer dependencies'
uses : 'ramsey/composer-install@v2'
uses : 'ramsey/composer-install@v3'
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--no-interaction"
Expand Down
28 changes: 14 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,30 +25,30 @@
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/form": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/config": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/http-foundation": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/http-kernel": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/options-resolver": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/security-bundle": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/serializer": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/form": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/config": "^5.4 || ^6.4",
"symfony/http-foundation": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/options-resolver": "^5.4 || ^6.4",
"symfony/security-bundle": "^5.4 || ^6.4",
"symfony/serializer": "^5.4 || ^6.4",
"twig/twig": "^2.14 || ^3.0"
},
"require-dev": {
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0",
"symfony/browser-kit": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/templating": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/expression-language": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.4",
"symfony/browser-kit": "^5.4 || ^6.4",
"symfony/templating": "^5.4 || ^6.4",
"symfony/expression-language": "^5.4 || ^6.4",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.0",
"php-coveralls/php-coveralls": "^2.0",
"doctrine/orm": "~2.10,>=2.10.0",
"doctrine/mongodb-odm": "^2.2",
"rector/rector": "^0.12.13",
"dg/bypass-finals": "^1.3",
"symfony/security-bundle": "^3.0 || ^4.0 || ^5.0",
"symfony/twig-bundle": "^3.0 || ^4.0 || ^5.0",
"symfony/security-bundle": "^5.4 || ^6.4",
"symfony/twig-bundle": "^5.4 || ^6.4",
"doctrine/doctrine-bundle": "^2.5"
},
"suggest": {
Expand Down

0 comments on commit 1f79282

Please sign in to comment.