Skip to content

Commit c4d3d5f

Browse files
committed
bug #1103 Fix unbound version constraints and update dependencies (rosier)
This PR was squashed before being merged into the master branch. Discussion ---------- Fix unbound version constraints and update dependencies Fixes the following `composer validate` warnings: See https://getcomposer.org/doc/04-schema.md for details on the schema require.symfony/expression-language : unbound version constraints (*) should be avoided require.symfony/framework-bundle : unbound version constraints (*) should be avoided Commits ------- 70c9caa Fix unbound version constraints and update dependencies
2 parents 156b2bf + 70c9caa commit c4d3d5f

File tree

3 files changed

+293
-232
lines changed

3 files changed

+293
-232
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ script:
5757
- ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction
5858
# Fail CI if the repo is in a dirty state after building assets (only for current release ie install)
5959
#- if [[ "$ACTION" == "install" ]]; then yarn install && yarn encore production && git add --all && git diff --staged --exit-code; fi
60-
- composer validate
60+
- composer validate --strict

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
"symfony/asset": "5.0.*",
2121
"symfony/console": "5.0.*",
2222
"symfony/dotenv": "5.0.*",
23-
"symfony/expression-language": "*",
23+
"symfony/expression-language": "5.0.*",
2424
"symfony/flex": "^1.1",
2525
"symfony/form": "5.0.*",
26-
"symfony/framework-bundle": "*",
26+
"symfony/framework-bundle": "5.0.*",
2727
"symfony/intl": "5.0.*",
2828
"symfony/mailer": "5.0.*",
2929
"symfony/monolog-bundle": "^3.1",

0 commit comments

Comments
 (0)