remove smarty
[GitHub/Stricted/Domain-Control-Panel.git] / .travis.yml
1 language: php
2 php:
3 - 5.3
4 - 5.4
5 - 5.5
6 - 5.6
7 - nightly
8 before_install:
9 - pear install pear/PHP_CodeSniffer
10 - phpenv rehash
11 before_script:
12 - git clone --branch=master --depth=1 --quiet git://github.com/WoltLab/WCF.git WCF
13 script:
14 - find . -type f -name '*.php' -not -path "./WCF/*" |xargs -I file php -l file > /dev/null
15 - phpcs -p --extensions=php --standard="`pwd`/WCF/CodeSniff/WCF" --ignore="lib/api/" --ignore="WCF/" .