-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
48 lines (41 loc) · 845 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: php
php:
- 5.6
- 7.2
- 7.3
- 7.4
env:
- LV="4.1.*"
- LV="4.2.*"
- LV="5.1.*"
- LV="5.5.*"
- LV="5.6.*"
matrix:
exclude:
# laravel 5.1 only supports php 5.5+
- php: 5.4
env: LV="5.1.*"
# laravel 5.5 and higher only supports php 7
- php: 5.4
env: LV="5.5.*"
- php: 5.4
env: LV="5.6.*"
- php: 5.5
env: LV="5.5.*"
- php: 5.5
env: LV="5.6.*"
- php: 5.6
env: LV="5.5.*"
- php: 5.6
env: LV="5.6.*"
# laravel 5.6 and higher only supports php 7.1+
- php: 7
env: LV="5.6.*"
before_install:
- phpenv config-rm xdebug.ini
- composer require illuminate/{container,database,filesystem,support,translation,validation}:${LV} --no-update
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit
sudo: false