File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 8
8
- 5.5
9
9
- 5.6
10
10
- hhvm
11
- - nightly
11
+ - 7.0
12
12
13
13
matrix :
14
14
fast_finish : true
@@ -22,20 +22,20 @@ matrix:
22
22
- php : 5.6
23
23
env : SYMFONY_VERSION=2.8.*
24
24
- php : 5.6
25
- env : SYMFONY_VERSION=3.0.*
25
+ env : SYMFONY_VERSION=3.0.* COVERAGE=true
26
26
allow_failures :
27
27
- php : hhvm
28
- - php : nightly
28
+ - php : 7.0
29
29
30
30
cache :
31
31
directories :
32
- - vendor
33
- - $HOME/.composer/cache
32
+ - $HOME/.composer/cache/files
34
33
35
34
before_script :
35
+ - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
36
36
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
37
- - composer selfupdate
37
+ - composer self-update
38
38
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
39
39
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
40
40
41
- phpunit : phpunit --coverage-text
41
+ phpunit : if [ "$COVERAGE" == true ]; then phpunit --coverage-text; else phpunit; fi
You can’t perform that action at this time.
0 commit comments