diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..c7a460f64dcbeb7d296563863068dcc22b516f06 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: php +php: + - 5.4 + +env: + - VUFIND_HOME=$PWD VUFIND_LOCAL_DIR=$PWD/local + +before_script: + - pear install pear/PHP_CodeSniffer + - phpenv rehash + +script: + - phpcs --standard=PEAR --ignore=*/config/*,*/tests/* --extensions=php $PWD/module +