This commit is contained in:
MarkBaker 2015-05-12 08:01:33 +01:00
commit a86cbaa230
2 changed files with 22 additions and 6 deletions

View File

@ -2,19 +2,32 @@ language: php
php:
- 5.2
- 5.3.3
- 5.3
- 5.3.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
allow_failures:
- 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:
- phpunit -c ./unitTests/
## PHP_CodeSniffer
- ./vendor/bin/phpcs Classes/ unitTests/ --standard=PSR2 -n --ignore=Classes/PHPExcel/Shared/PCLZip
## PHPUnit
- phpunit -c ./unitTests/
notifications:
email: false

View File

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