File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed
Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,16 @@ cache:
1414 directories :
1515 - $HOME/.composer/cache
1616
17- php :
18- # Can't test against 5.2; openssl is not available:
19- # http://docs.travis-ci.com/user/languages/php/#PHP-installation
20- - 5.3
21- - 5.4
22- - 5.5
23- - 5.6
24- - hhvm
17+ matrix :
18+ include :
19+ # Can't test against 5.2; openssl is not available:
20+ # http://docs.travis-ci.com/user/languages/php/#PHP-installation
21+ - php : 5.3
22+ - php : 5.4
23+ - php : 5.5
24+ - php : 5.6
25+ env : PHPCS=true
26+ - php : hhvm
2527
2628install :
2729 - composer install
@@ -34,4 +36,4 @@ before_script:
3436
3537script :
3638 - vendor/bin/phpunit
37- - vendor/bin/phpcs src --standard=style/ruleset.xml -np
39+ - if [[ "$PHPCS" == "true" ]]; then vendor/bin/phpcs src --standard=style/ruleset.xml -np; fi
You can’t perform that action at this time.
0 commit comments