Skip to content

Commit

Permalink
Drop support for symfony <5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Dec 16, 2023
1 parent f7a5dc5 commit b17bb4b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 23 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,14 @@ jobs:
- dependency-versions: "lowest"
php-version: "7.4"
php-extensions: "redis-5.3.0"
- symfony-require: "4.4.*"
php-version: "8.1"
php-extensions: "redis"
- symfony-require: "5.4.*"
php-version: "8.2"
php-extensions: "redis"
- symfony-require: "6.4.*"
php-version: "8.2"
php-extensions: "redis-phpredis/phpredis@develop"
- symfony-require: "7.0.*"
php-version: "8.2"
php-version: "8.3"
php-extensions: "redis"

steps:
Expand All @@ -49,11 +46,6 @@ jobs:
ini-values: "zend.assertions=1, max_execution_time=30"
tools: "flex"

- name: "Remove psalm for Symfony 4.4"
if: "${{ matrix.symfony-require == '4.4.*' }}"
run: |
composer remove --no-update --dev vimeo/psalm
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
with:
Expand Down
27 changes: 13 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,31 +23,30 @@
"require": {
"php": "^7.4 || ^8.0",
"symfony/deprecation-contracts": "^2 || ^3",
"symfony/framework-bundle": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/http-foundation": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/service-contracts": ">=1.0",
"symfony/var-dumper": "^4.4 || ^5.3 || ^6.0 || ^7.0"
"symfony/var-dumper": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-redis": "*",
"doctrine/annotations": "^1.13 || ^2.0",
"doctrine/annotations": "^2.0",
"doctrine/coding-standard": "^12.0",
"friendsofphp/proxy-manager-lts": "^1.0.6",
"monolog/monolog": "*",
"phpunit/phpunit": "^9.5.28 || ^10",
"predis/predis": "^2.0",
"seec/phpunit-consecutive-params": "dev-master",
"symfony/browser-kit": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/cache": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/dom-crawler": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/filesystem": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/profiler-pack": "^1.0",
"symfony/stopwatch": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/yaml": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"vimeo/psalm": "^5.2"
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
"symfony/cache": "^5.4 || ^6.0 || ^7.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/dom-crawler": "^5.4 || ^6.0 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
"suggest": {
"monolog/monolog": "If you want to use the monolog redis handler.",
Expand Down

0 comments on commit b17bb4b

Please sign in to comment.