Skip to content

Commit b5b8e86

Browse files
committed
Add initial travis config
1 parent 27aab97 commit b5b8e86

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.travis.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
language: php
2+
3+
php:
4+
- 5.5
5+
- 5.6
6+
- 7.0
7+
- 7.1
8+
- 7.2
9+
- nightly
10+
11+
env: ~
12+
13+
install:
14+
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
15+
- composer install
16+
17+
before_script: ~
18+
19+
allow_failures:
20+
- php: nightly
21+
22+
fast_finish: true
23+
24+
# cache vendors
25+
cache:
26+
directories:
27+
- vendor
28+
- $HOME/.composer/cache
29+
30+
# This triggers builds to run on the new TravisCI infrastructure.
31+
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
32+
sudo: false
33+
34+
notifications:
35+
webhooks: ~

0 commit comments

Comments
 (0)