File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 5.3
5
4
- 5.4
6
5
- 5.5
7
6
- 5.6
8
7
- 7
9
8
9
+ # lock distro so new future defaults will not break the build
10
+ dist : trusty
11
+
12
+ # also test lowest dependencies on PHP 7
13
+ matrix :
14
+ include :
15
+ - php : 5.3
16
+ dist : precise
17
+ - php : 7.0
18
+ env :
19
+ - DEPENDENCIES=lowest
20
+
10
21
sudo : false
11
22
12
23
install :
13
24
- composer install --no-interaction
14
-
25
+ - if [ "$DEPENDENCIES" = "lowest" ]; then composer update --prefer-lowest -n; fi
26
+
15
27
script :
16
- - phpunit --coverage-text
28
+ - ./vendor/bin/ phpunit --coverage-text
Original file line number Diff line number Diff line change 15
15
"react/stream" : " ^0.4 || ^0.3"
16
16
},
17
17
"require-dev" : {
18
+ "phpunit/phpunit" : " ^4.8.10||^5.0" ,
18
19
"react/event-loop" : " ^0.4 || ^0.3"
19
20
}
20
21
}
You can’t perform that action at this time.
0 commit comments