Commit 7c3c8d72 authored by Daniel Tschinder's avatar Daniel Tschinder

Fix env variable in travis.yaml

SYMFONY_DEPS_VERSION=3 was never evaluated correctly as the before_scripts are comparing with 3.0
The test are installing dev-master for some dependencies which might not be 3.0
parent e6f4cdea
...@@ -29,6 +29,6 @@ matrix: ...@@ -29,6 +29,6 @@ matrix:
- php: 5.6 - php: 5.6
env: SYMFONY_DEPS_VERSION=2.8 env: SYMFONY_DEPS_VERSION=2.8
- php: 5.6 - php: 5.6
env: SYMFONY_DEPS_VERSION=3 env: SYMFONY_DEPS_VERSION=3.0
- php: 7.0 - php: 7.0
- php: hhvm - php: hhvm
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment