We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 429085b commit 52ab0afCopy full SHA for 52ab0af
.travis.yml
@@ -6,6 +6,25 @@ php:
6
- 5.4
7
- 5.5
8
- 5.6
9
+ - hhvm
10
11
env:
- - DB=mysql
12
+ - DB=mysql
13
+
14
+before_script:
15
+ - composer self-update
16
+ - composer install --prefer-source --no-interaction --dev
17
18
+script: phpunit
19
20
+# allow_failures: Allow this build to fail under the specified environments.
21
+# fast_finish: If your build fails do not continue trying to build, just stop.
22
+matrix:
23
+ allow_failures:
24
+ - php: 5.6
25
+ - php: hhvm
26
+ fast_finish: true
27
28
+notifications:
29
+ on_success: never
30
+ on_failure: never
0 commit comments