Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Commit

Permalink
add travis configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
David Keijser committed Mar 25, 2015
1 parent 39a0f93 commit 44906c8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm

matrix:
allow_failures:
- php: 5.6
- php: hhvm

branches:
only:
- /^v\d\.\d/
cache:
directories:
- vendor

before_script:
- composer install --dev --no-interaction

script:
- composer run test

after_script:
- php vendor/bin/coveralls

0 comments on commit 44906c8

Please sign in to comment.