Travis CI : Support for PSR-2 test

This commit is contained in:
Progi1984 2015-05-12 08:02:56 +02:00
parent c70e289dac
commit 986b20bbb1
2 changed files with 22 additions and 6 deletions

View File

@ -2,8 +2,8 @@ language: php
php: php:
- 5.2 - 5.2
- 5.3.3
- 5.3 - 5.3
- 5.3.3
- 5.4 - 5.4
- 5.5 - 5.5
- 5.6 - 5.6
@ -13,7 +13,20 @@ matrix:
allow_failures: allow_failures:
- php: hhvm - php: hhvm
before_script:
## Packages
- sudo apt-get -qq update > /dev/null
## Composer
##@todo Remove when support of 5.2 will be dropped
- phpenv global 5.3
- composer self-update
- composer install --prefer-source --dev
- phpenv global "$TRAVIS_PHP_VERSION"
script: script:
## PHP_CodeSniffer
- ./vendor/bin/phpcs Classes/ unitTests/ --standard=PSR2 -n --ignore=Classes/PHPExcel/Shared/PCLZip
## PHPUnit
- phpunit -c ./unitTests/ - phpunit -c ./unitTests/
notifications: notifications:

View File

@ -15,7 +15,7 @@
}, },
{ {
"name": "Franck Lefevre", "name": "Franck Lefevre",
"homepage": "http://blog.rootslabs.net" "homepage": "http://rootslabs.net"
}, },
{ {
"name": "Erik Tilt" "name": "Erik Tilt"
@ -26,6 +26,9 @@
"ext-xml": "*", "ext-xml": "*",
"ext-xmlwriter": "*" "ext-xmlwriter": "*"
}, },
"require-dev": {
"squizlabs/php_codesniffer": "1.*"
},
"recommend": { "recommend": {
"ext-zip": "*", "ext-zip": "*",
"ext-gd2": "*" "ext-gd2": "*"