Skip to content

Commit

Permalink
Fix issue with flex, with Symfony upgrade to 5.4 and sync-recipes on …
Browse files Browse the repository at this point in the history
…init
  • Loading branch information
andytson-inviqa committed Feb 18, 2022
1 parent ee7161e commit a89e56f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/symfony/application/skeleton/composer.json.twig
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"php": ">= 8.0",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/console": "5.2.*",
"symfony/dotenv": "5.2.*",
"symfony/flex": "^1.12",
"symfony/framework-bundle": "5.2.*",
"symfony/yaml": "5.2.*"
"symfony/console": "~5.4",
"symfony/dotenv": "~5.4",
"symfony/flex": "^2.1",
"symfony/framework-bundle": "~5.4",
"symfony/yaml": "~5.4"
},
"require-dev": {
"behat/behat": "^3.5",
Expand All @@ -32,6 +32,9 @@
"symfony/phpunit-bridge": "^5.2"
},
"config": {
"allow-plugins": {
"symfony/flex": true
},
"bin-dir": "bin",
"optimize-autoloader": true,
"platform": {
Expand Down Expand Up @@ -71,6 +74,7 @@
"@auto-scripts"
],
"post-update-cmd": [
"bash -e -c '[ -e symfony.lock ] || composer sync-recipes'",
"@auto-scripts"
],
"test": [
Expand Down

0 comments on commit a89e56f

Please sign in to comment.