From 684b875d4b9a748c1ecf1103bcd600d1159a4859 Mon Sep 17 00:00:00 2001 From: Tushar Kulkarni Date: Sat, 12 Jan 2019 13:49:56 +0530 Subject: [PATCH] Update .travis.yml --- .travis.yml | 51 +++++++++++++++++---------------------------------- 1 file changed, 17 insertions(+), 34 deletions(-) diff --git a/.travis.yml b/.travis.yml index 10862fc..0c263ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,47 +1,30 @@ # Required to run your project under the correct environment. - language: php # Versions of PHP you want your project run with. - php: + - 5.4 + - 5.5 + - 5.6 + - hhvm - - 5.5 - - - 5.6 - - - 7.0 - - - 7.1 - - - 7.2 - - - hhvm - - +# Commands to be run before your environment runs. +before_script: + - composer self-update + - composer install --prefer-source --no-interaction --dev # Commands you want to run that will verify your build. - script: phpunit # allow_failures: Allow this build to fail under the specified environments. - # fast_finish: If your build fails do not continue trying to build, just stop. - matrix: - - allow_failures: - -   - php: 5.6 - -   - php: hhvm - - fast_finish: true - - -# Project language -language: php - -# Allows use container-based infrastructure -sudo: false - + allow_failures: + - php: 5.6 + - php: hhvm + fast_finish: true + +# Customize when the notification emails are sent. +notifications: + on_success: never + on_failure: always