Skip to content

Commit 497f885

Browse files
authored
Default to PHP versions under active development
PHP 7.0 is no longer under active support, and PHP 5.5 has been End of Life since Jul 2016. This commit removes version 5.2 - 5.4, and allows failure on EoL 5.5. It also adds 7.1, 7.2, and nightly, in an attempt to promote newer versions of PHP.
1 parent 9163b34 commit 497f885

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ language: php
55
php:
66
# using major version aliases
77

8-
# aliased to 5.2.17
9-
- 5.2
10-
# aliased to 5.3.29
11-
- 5.3
12-
# aliased to a recent 5.4.x version
13-
- 5.4
148
# aliased to a recent 5.5.x version
159
- 5.5
1610
# aliased to a recent 5.6.x version
1711
- 5.6
18-
# aliased to a recent 7.x version
12+
# aliased to a recent 7.0.x version
1913
- 7.0
14+
# aliased to a recent 7.1.x version
15+
- 7.1
16+
# aliased to a recent 7.2.x version
17+
- 7.2
18+
# aliased to a recent nightly build
19+
- nightly
2020
# aliased to a recent hhvm version
2121
- hhvm
2222

@@ -31,7 +31,7 @@ matrix:
3131
- php: hhvm
3232
env: DB=pgsql # PDO driver for pgsql is unsupported by HHVM (3rd party install for support)
3333
allow_failures:
34-
- php: 7.0
34+
- php: 5.5
3535
- php: hhvm
3636

3737
# execute any number of scripts before the test run, custom env's are available as variables

0 commit comments

Comments
 (0)