Skip to content

Commit 84b6e13

Browse files
andrew-dembfezfezfaizanakram99
authored
[5.0.x] compatibility with Symfony components ^6 (#489)
* allow symfony/cache ^6 (#415) (cherry picked from commit 652440a) * Allow symfony/expression-language v6 (#443) Allow symfony/expression-language v6 and replaces | with || (in composer.json file), | is not documented in composer docs but is allowed for BC (cherry picked from commit 88bc035) * Drop ad-hoc for install `ecodev/graphql-upload` with PHP 8. Full support for PHP 8.0 are introduced in upstream Co-authored-by: Stéphane <[email protected]> Co-authored-by: Faizan Akram Dar <[email protected]>
1 parent 21bc850 commit 84b6e13

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/continuous_integration.yml

-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ jobs:
5656
- name: "Install dependencies with composer"
5757
run: |
5858
composer update ${{ matrix.install-args }} --no-interaction --no-progress --prefer-dist
59-
if: ${{ matrix.php-version != '8.0' }}
60-
61-
- name: "Install dependencies with composer. Ignoring platform reqs to bypass a problem with ecodev/graphql-upload available only with latest Webonyx on PHP8."
62-
run: |
63-
composer update ${{ matrix.install-args }} --no-interaction --no-progress --prefer-dist --ignore-platform-reqs
64-
if: ${{ matrix.php-version == '8.0' }}
6559
6660
- name: "Run tests with phpunit/phpunit"
6761
run: "vendor/bin/phpunit"

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"psr/http-server-handler": "^1",
2323
"psr/http-server-middleware": "^1",
2424
"psr/simple-cache": "^1.0.1",
25-
"symfony/cache": "^4.3 | ^5",
26-
"symfony/expression-language": "^4 | ^5",
25+
"symfony/cache": "^4.3 || ^5 || ^6",
26+
"symfony/expression-language": "^4 || ^5 || ^6",
2727
"thecodingmachine/cache-utils": "^1",
2828
"thecodingmachine/class-explorer": "^1.1.0",
2929
"webmozart/assert": "^1.10",

0 commit comments

Comments
 (0)