Commit 8666b66
committed
minor #78 Fix Travis SYMFONY_REQUIRE config (wouterj)
This PR was merged into the master branch.
Discussion
----------
Fix Travis SYMFONY_REQUIRE config
The `composer install` script was running in `before_install`, while the `SYMFONY_REQUIRE` + symfony/flex was configured in `install`. Swapping these two from position fixes the Travis setup. (flex has to be configured before `composer install`).
I also removed `if ! [ -v "$DEPENDENCIES" ]; then composer require --no-update ${DEPENDENCIES}; fi;`, it seems to be a left over from previously used configs as the `DEPENDENCIES` is not defined anywhere.
Commits
-------
8143c62 Swap install scripts from before_install & install1 file changed
+3
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | 31 | | |
36 | 32 | | |
37 | 33 | | |
38 | 34 | | |
39 | 35 | | |
40 | 36 | | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
41 | 40 | | |
42 | 41 | | |
43 | 42 | | |
| |||
0 commit comments