Added PHP 5.6 to travis-ci and removed namespace checking before we make the change to namespaces
This commit is contained in:
parent
3b7dac452b
commit
f4d7fa427d
13
.travis.yml
13
.travis.yml
|
|
@ -1,12 +1,15 @@
|
||||||
language: php
|
language: php
|
||||||
|
|
||||||
php:
|
php:
|
||||||
- 5.3
|
- 5.3
|
||||||
- 5.4
|
- 5.4
|
||||||
- 5.5
|
- 5.5
|
||||||
## @reference https://github.com/travis-ci/travis-ci/issues/1749
|
- 5.6
|
||||||
- hhvm
|
- hhvm
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
|
- php: 5.6
|
||||||
- php: hhvm
|
- php: hhvm
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
|
|
@ -30,8 +33,8 @@ before_script:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
## PHP_CodeSniffer
|
## PHP_CodeSniffer
|
||||||
- phpcs --standard=PSR1 Classes/
|
## - phpcs --standard=PSR1 Classes/
|
||||||
- phpcs --standard=PSR2 Classes/
|
## - phpcs --standard=PSR2 Classes/
|
||||||
## PHP Copy/Paste Detector
|
## PHP Copy/Paste Detector
|
||||||
- php phpcpd.phar --verbose Classes/
|
- php phpcpd.phar --verbose Classes/
|
||||||
## PHP Mess Detector
|
## PHP Mess Detector
|
||||||
|
|
@ -40,7 +43,3 @@ script:
|
||||||
- php phploc.phar Classes/
|
- php phploc.phar Classes/
|
||||||
## PHPUnit
|
## PHPUnit
|
||||||
- phpunit -c ./ --coverage-text
|
- phpunit -c ./ --coverage-text
|
||||||
|
|
||||||
notifications:
|
|
||||||
email:
|
|
||||||
- progi1984@gmail.com
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue