Skip to content

Commit

Permalink
Require Symfony 5.3 for Sylius 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Zales0123 committed Dec 6, 2021
1 parent 333c561 commit 2dfba65
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
php: ["7.4", "8.0"]
symfony: ["^4.4", "^5.2"]
symfony: ["4.4.*", "5.3.*"]
node: ["10.x"]
mysql: ["5.7", "8.0"]

Expand Down Expand Up @@ -85,7 +85,9 @@ jobs:
-
name: Restrict Symfony version
if: matrix.symfony != ''
run: composer config extra.symfony.require "${{ matrix.symfony }}"
run: |
composer global require --no-progress --no-scripts --no-plugins "symfony/flex:1.13.4"
composer config extra.symfony.require "${{ matrix.symfony }}"
-
name: Get Composer cache directory
Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"symfony/flex": "^1.11"
},
"conflict": {
"symfony/form": "4.4.11 || 4.4.12"
"symfony/form": "4.4.11 || 4.4.12",
"symfony/password-hasher": "^6.0"
},
"require-dev": {
"behat/behat": "^3.7",
Expand Down Expand Up @@ -71,7 +72,8 @@
"dev-master": "1.9-dev"
},
"symfony": {
"allow-contrib": false
"allow-contrib": false,
"require": "5.3.*"
}
},
"autoload": {
Expand Down

0 comments on commit 2dfba65

Please sign in to comment.