Skip to content

Commit f464ffd

Browse files
committed
Make travis silent
Travis will always build all branches. As we just have a .travis.yml on master, travis will go ahead and checkout PHP-5.3. It fails and then sends mails. We really don't want to get spammed, so we add a .travis.yml that is just silent.
1 parent cda14b9 commit f464ffd

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: php
2+
3+
php:
4+
# We only specify one version so we only get one worker
5+
- 5.4
6+
7+
notifications:
8+
email: false
9+
10+
script: exit 0

0 commit comments

Comments
 (0)