We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f855002 commit ee91d95Copy full SHA for ee91d95
.travis.yml
@@ -1,11 +1,28 @@
1
-language: php
2
sudo: false
3
-php:
4
- - 7
5
- - 5.6
6
- - 5.5
7
- - 5.4
8
- - 5.3
9
- - 5.2
+language: php
+matrix:
+ include:
+ - php: 5.2
+ dist: precise
+ - php: 5.3
+ - php: 5.4
10
+ dist: trusty
11
+ - php: 5.5
12
13
+ - php: 5.6
14
15
+ - php: 7.0
16
17
+ - php: 7.1
18
19
+ - php: 7.2
20
21
+ - php: 7.3
22
23
+install:
24
+ - pear upgrade --force --alldeps pear/pear
25
+ - pear install -f package.xml
26
script:
- - pear run-tests -r tests/
27
+ - pear run-tests -qr tests/
28
+ - for i in `find tests/ -name '*.out'`; do echo "$i"; cat "$i"; done
0 commit comments