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