Adding in travis

pull/7/head
Tom Hutchison 2015-11-04 14:44:17 -05:00
parent b1377818bb
commit 9a01a80158
2 changed files with 28 additions and 0 deletions

18
.travis.yml Normal file
View File

@ -0,0 +1,18 @@
language: php
php:
- 7
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- nightly
sudo: false
install:
- travis_retry composer update --no-progress --prefer-dist --profile
script:
- composer test

10
composer.json Normal file
View File

@ -0,0 +1,10 @@
{
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor"
]
}
}