|
@@ -14,7 +14,8 @@ install:
|
|
|
|
|
|
|
|
script:
|
|
script:
|
|
|
- phpenv rehash
|
|
- phpenv rehash
|
|
|
- - git ls-files -z "*.php" | xargs -0 -n1 -P4 php -l
|
|
|
|
|
|
|
+ - find . -not -path "./lib/JSON.php" -name \*.php -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null 2>php-l-results
|
|
|
|
|
+ - if [ -s php-l-results ]; then cat php-l-results; exit 1; fi
|
|
|
- |
|
|
- |
|
|
|
if [[ $VALIDATE_STANDARD == yes ]]; then
|
|
if [[ $VALIDATE_STANDARD == yes ]]; then
|
|
|
COMPOSER_BIN=$(composer global config --absolute bin-dir)
|
|
COMPOSER_BIN=$(composer global config --absolute bin-dir)
|