Skip to content

Commit 9329fb0

Browse files
Restore support for PHP 5.5.9+ (#55)
1 parent 46cb272 commit 9329fb0

File tree

2 files changed

+30
-14
lines changed

2 files changed

+30
-14
lines changed

.travis.yml

Lines changed: 29 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,36 @@ cache:
44
directories:
55
- "$HOME/.composer/cache"
66

7-
php:
8-
- '5.6'
9-
- '7.0'
10-
- '7.1'
11-
- '7.2'
12-
- '7.3'
13-
- '7.4'
14-
- 'nightly'
15-
16-
matrix:
17-
fast_finish: true
7+
jobs:
188
include:
19-
- php: '5.6'
9+
- name: PHP 5.5.9
10+
php: 5.5.9
11+
dist: trusty
2012
env: COMPOSER_FLAGS='--prefer-lowest'
13+
- name: PHP 5.5
14+
php: 5.5
15+
dist: trusty
16+
- name: PHP 5.6
17+
php: 5.6
18+
dist: xenial
19+
- name: PHP 7.0
20+
php: 7.0
21+
dist: xenial
22+
- name: PHP 7.1
23+
php: 7.1
24+
dist: bionic
25+
- name: PHP 7.2
26+
php: 7.2
27+
dist: bionic
28+
- name: PHP 7.3
29+
php: 7.3
30+
dist: bionic
31+
- name: PHP 7.4
32+
php: 7.4
33+
dist: bionic
34+
- name: PHP 8.0
35+
php: nightly
36+
dist: bionic
2137
allow_failures:
2238
- php: nightly
2339

@@ -26,7 +42,7 @@ before_install:
2642
- composer global require bamarni/composer-bin-plugin:dev-master
2743

2844
install:
29-
- composer install
45+
- composer update --no-interaction
3046

3147
script:
3248
- vendor/bin/phpunit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"license": "MIT",
1414
"require": {
15-
"php": "^5.6 || ^7.0 || ^8.0",
15+
"php": "^5.5.9 || ^7.0 || ^8.0",
1616
"composer-plugin-api": "^1.0 || ^2.0"
1717
},
1818
"require-dev": {

0 commit comments

Comments
 (0)