File tree 1 file changed +6
-3
lines changed
Filter options
1 file changed +6
-3
lines changed
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ language: php
2
2
3
3
sudo : false
4
4
5
+ cache :
6
+ directories :
7
+ - $HOME/.composer/cache/files
8
+
5
9
matrix :
6
10
include :
7
11
- php : 5.3
@@ -12,10 +16,9 @@ matrix:
12
16
env : deps=low
13
17
- php : 5.6
14
18
env : deps=high
15
- - php : nightly
19
+ - php : 7.0
16
20
- php : hhvm
17
21
allow_failures :
18
- - php : nightly
19
22
- php : hhvm
20
23
fast_finish : true
21
24
25
28
- SYMFONY_DEPRECATIONS_HELPER=weak
26
29
27
30
before_install :
28
- - composer self-update
29
31
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]] && [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi;
32
+ - composer self-update
30
33
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]] && [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
31
34
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]] && [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then php -i; fi;
32
35
# Set the COMPOSER_ROOT_VERSION to the right version according to the branch being built
You can’t perform that action at this time.
0 commit comments