language: php sudo: true cache: directories: - $HOME/.composer/cache/files php: - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm fast_finish: true before_script: - if [[ ${TRAVIS_PHP_VERSION:0:1} == "5" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini && phpenv config-rm xdebug.ini; fi - if [[ ${TRAVIS_PHP_VERSION:0:4} == "hhvm" ]]; then composer require mongofill/mongofill --ignore-platform-reqs; fi - sudo apt-get update - sudo apt-get install -y libssh2-1-dev - if [[ ${TRAVIS_PHP_VERSION:0:4} != "hhvm" ]]; then yes | pecl install ssh2 ; fi - cp tests/Gaufrette/Functional/adapters/DoctrineDbal.php.dist tests/Gaufrette/Functional/adapters/DoctrineDbal.php -f - composer self-update && composer install --prefer-source --no-interaction - if [[ ${TRAVIS_PHP_VERSION:0:3} != "5.4" ]]; then composer require microsoft/windowsazure:^0.4.3; fi script: - php bin/phpspec run -fpretty --verbose - php bin/phpunit