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 760525a commit 9292887Copy full SHA for 9292887
.travis.yml
@@ -1,24 +1,17 @@
1
-langauge: php
2
-
+language: php
3
dist: trusty
4
5
php:
6
- - 7.0
7
- - 7.1
8
- - 7.2
9
+ - '7.0'
+ - '7.1'
+ - nightly
10
sudo: required
11
12
cache:
13
directories:
14
- $HOME/.composer/cache
15
16
services:
17
- mysql
18
19
before_install:
20
- - mysql -e 'CREATE DATABASE travis;'
21
+ - mysql -e 'CREATE DATABASE IF NOT EXISTS travis;'
22
before_script:
23
- phpenv config-rm xdebug.ini
24
- cp .env.travis .env
@@ -27,6 +20,7 @@ before_script:
27
- php artisan key:generate --force
28
- php artisan migrate --force
29
- php artisan db:seed --force
30
31
script:
32
- vendor/bin/phpunit --coverage-clover=coverage.xml
25
+notifications:
26
+ email: false
0 commit comments