Skip to content

Commit ca15d20

Browse files
committed
minor #17 drop PHP < 7.1 support (xabbuh)
This PR was merged into the 2.0.x-dev branch. Discussion ---------- drop PHP < 7.1 support Commits ------- 3cff92f drop PHP < 7.1 support
2 parents 9c90653 + 3cff92f commit ca15d20

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

.travis.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,12 @@ cache:
66
directories:
77
- $HOME/.composer/cache/files
88

9-
php:
10-
- 5.6
11-
- 7.0
12-
- 7.1
13-
149
matrix:
1510
fast_finish: true
1611
include:
17-
- php: 5.3
18-
dist: precise
12+
- php: 7.1
1913
env: COMPOSER_OPTIONS="--prefer-lowest --prefer-stable"
20-
- php: 5.4
21-
dist: precise
22-
- php: 5.5
23-
dist: precise
14+
- php: 7.3
2415
- php: 7.2
2516
env: deps="high"
2617

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
2.1.0
5+
-----
6+
7+
* dropped support for PHP < 7.1
8+
49
2.0.0
510
-----
611

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^5.3 || ^7.0"
15+
"php": "^7.1"
1616
},
1717
"autoload": {
1818
"psr-4": {
@@ -21,7 +21,7 @@
2121
},
2222
"extra": {
2323
"branch-alias": {
24-
"dev-master": "2.0.x-dev"
24+
"dev-master": "2.1.x-dev"
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)