forked from GetStream/stream-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (29 loc) · 772 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
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
env:
- LARAVEL_VERSION="4.2.*"
- LARAVEL_VERSION="5.0.*"
- LARAVEL_VERSION="5.4.*"
- LARAVEL_VERSION="5.5.*"
matrix:
exclude:
- php: 5.5
env: LARAVEL_VERSION="5.4.*"
- php: 5.5
env: LARAVEL_VERSION="5.5.*"
- php: 5.6
env: LARAVEL_VERSION="5.5.*"
- php: 7.2
env: LARAVEL_VERSION="5.0.*"
before_script:
- travis_retry composer self-update
- travis_retry composer require laravel/framework:${LARAVEL_VERSION} --no-update
- travis_retry composer require illuminate/support:${LARAVEL_VERSION} --no-update
- travis_retry composer require illuminate/database:${LARAVEL_VERSION} --no-update
- travis_retry composer install --prefer-source --no-interaction
script: phpunit