forked from swagindustries/doctrine-domain-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (30 loc) · 763 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
language: php
php:
- 7.1
- 7.2
- 7.3
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: 7.1
env: 'COMPOSER_FLAGS="--prefer-stable"'
- php: 7.2
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: 7.2
env: 'COMPOSER_FLAGS="--prefer-stable"'
- php: 7.3
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: 7.3
env: 'COMPOSER_FLAGS="--prefer-stable"'
branches:
only:
- master
- v1;
install:
- composer update --prefer-source $COMPOSER_FLAGS
script:
- ./vendor/bin/phpunit -c phpunit.xml.dist