-
-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (33 loc) · 602 Bytes
/
Copy path.travis.yml
File metadata and controls
42 lines (33 loc) · 602 Bytes
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
language: php
os: linux
dist: xenial
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: 7.1
- php: 7.3
- php: 7.4
- php: hhvm
sudo: false
before_script:
- echo "memory_limit=2048M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- composer selfupdate
- composer clearcache
- composer install --no-interaction
install:
- COMPOSER_MEMORY_LIMIT=-1 composer install --no-interaction
script:
- phpunit
notifications:
email:
on_success: always
on_failure: always