after_success.sh 0000755 00000000326 15152054427 0007742 0 ustar 00 #!/bin/bash
if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
vendor/bin/coveralls -v
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml
fi
install.sh 0000755 00000000211 15152054427 0006550 0 ustar 00 #!/bin/bash
composer install -n
if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
composer require --dev satooshi/php-coveralls:~0.7@dev
fi
script.sh 0000755 00000000366 15152054427 0006421 0 ustar 00 #!/bin/bash
if [[ $TRAVIS_PHP_VERSION != "hhvm" \
&& $TRAVIS_PHP_VERSION != "hhvm-nightly" \
&& $TRAVIS_PHP_VERSION != "7.0" ]]; then
vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
else
vendor/bin/phpunit
fi
before_script.sh 0000755 00000000457 15152054427 0007744 0 ustar 00 #!/bin/bash
if [[ $TRAVIS_PHP_VERSION != "hhvm" \
&& $TRAVIS_PHP_VERSION != "hhvm-nightly" \
&& $TRAVIS_PHP_VERSION != "7.0" ]]; then
phpenv config-add ./travis/extra.ini
phpenv rehash
fi
if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
sed '/MockeryPHPUnitIntegration/d' -i ./phpunit.xml.dist
fi
extra.ini 0000664 00000000107 15152054427 0006375 0 ustar 00 extension = "mongo.so"
extension = "redis.so"
extension = "memcache.so"