c54f643886e1bd61dff64a19c858ad3099860dcd
[GitHub/Stricted/speedport-hybrid-php-api.git] / .travis.yml
1 language: php
2 sudo: false
3 php:
4 - 5.3
5 - 5.4
6 - 5.5
7 - 5.6
8 - 7.0
9 - hhvm
10 before_script:
11 - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi
12 - travis_retry composer self-update
13 - travis_retry composer require "squizlabs/php_codesniffer=*"
14 - travis_retry composer install --no-interaction --prefer-source
15 - git clone --branch=master --depth=1 --quiet git://github.com/WoltLab/WCF.git WCF
16 script:
17 - find . -type f -name '*.php' -not -path "./WCF/*" -not -path "./vendor/*" |xargs -I file php -l file > /dev/null
18 - vendor/bin/phpcs -p --extensions=php --standard="`pwd`/WCF/CodeSniff/WCF" --ignore="lib/system/api/" --ignore="WCF/" --ignore="vendor/" .