From f4d7fa427d179355ba26383ab904c049737b80d1 Mon Sep 17 00:00:00 2001 From: Gabriel Bull Date: Sat, 15 Mar 2014 09:45:57 -0400 Subject: [PATCH] Added PHP 5.6 to travis-ci and removed namespace checking before we make the change to namespaces --- .travis.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 99f33a20..56133049 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,15 @@ language: php + php: - 5.3 - 5.4 - 5.5 - ## @reference https://github.com/travis-ci/travis-ci/issues/1749 + - 5.6 - hhvm + matrix: allow_failures: + - php: 5.6 - php: hhvm before_script: @@ -30,8 +33,8 @@ before_script: script: ## PHP_CodeSniffer - - phpcs --standard=PSR1 Classes/ - - phpcs --standard=PSR2 Classes/ + ## - phpcs --standard=PSR1 Classes/ + ## - phpcs --standard=PSR2 Classes/ ## PHP Copy/Paste Detector - php phpcpd.phar --verbose Classes/ ## PHP Mess Detector @@ -40,7 +43,3 @@ script: - php phploc.phar Classes/ ## PHPUnit - phpunit -c ./ --coverage-text - -notifications: - email: - - progi1984@gmail.com