summaryrefslogtreecommitdiff
path: root/lib/facebook-graph-sdk/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/facebook-graph-sdk/.travis.yml')
-rw-r--r--lib/facebook-graph-sdk/.travis.yml20
1 files changed, 13 insertions, 7 deletions
diff --git a/lib/facebook-graph-sdk/.travis.yml b/lib/facebook-graph-sdk/.travis.yml
index c3082df..a7877ae 100644
--- a/lib/facebook-graph-sdk/.travis.yml
+++ b/lib/facebook-graph-sdk/.travis.yml
@@ -5,20 +5,26 @@ php:
- 5.5
- 5.6
- 7.0
- - hhvm
+ - 7.1
sudo: false
+cache:
+ directories:
+ - $HOME/.composer/cache
+
+matrix:
+ include:
+ - php: hhvm
+ dist: trusty
+
before_install:
- travis_retry composer self-update
install:
- - travis_retry composer install --prefer-source --no-interaction
+ - travis_retry composer require --dev --no-update squizlabs/php_codesniffer
+ - travis_retry composer install --prefer-dist --no-interaction
script:
+ - vendor/bin/phpcs
- vendor/bin/phpunit --coverage-text --exclude-group integration
-
-matrix:
- allow_failures:
- - php: 7.0
- fast_finish: true