/home/mip/mip/public/img/credit/datatables/travis.tar
after_success.sh000075500000000326151520544270007742 0ustar00#!/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.sh000075500000000211151520544270006550 0ustar00#!/bin/bash
composer install -n

if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
  composer require --dev satooshi/php-coveralls:~0.7@dev
fi
script.sh000075500000000366151520544270006421 0ustar00#!/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.sh000075500000000457151520544270007744 0ustar00#!/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.ini000066400000000107151520544270006375 0ustar00extension = "mongo.so"
extension = "redis.so"
extension = "memcache.so"