Skip to content

Commit 4eb4208

Browse files
committed
Create .travis.yml
1 parent 6b662d4 commit 4eb4208

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: php
2+
php:
3+
- "5.6"
4+
- "7.0"
5+
- "hhvm"
6+
7+
before_script:
8+
- curl -sS https://getcomposer.org/installer | php -- --filename=composer
9+
- chmod +x composer
10+
- composer install
11+
12+
script:
13+
- php vendor/bin/phpunit --coverage-text
14+
15+
matrix:
16+
allow_failures:
17+
- php: "hhvm"
18+
branches:
19+
only:
20+
- master
21+

0 commit comments

Comments
 (0)