Skip to content

Commit 6eff6e4

Browse files
authored
Merge pull request #48 from xabbuh/php-support
drop support for PHP 5 and 7.0
2 parents 186547b + c1af37e commit 6eff6e4

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.travis.yml

-5
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ cache:
77
- $HOME/.composer/cache/files
88

99
php:
10-
- 5.5
11-
- 5.6
12-
- 7.0
1310
- 7.1
1411
- 7.2
1512
- 7.3
@@ -27,8 +24,6 @@ matrix:
2724
include:
2825
- php: 7.1
2926
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
30-
- php: 5.5
31-
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
3227

3328
before_install:
3429
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 1.4.0 -
4+
5+
- drop support for PHP 5 and 7.0
6+
37
## 1.3.1 - 2019-11-06
48

59
### Fixed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^5.5 || ^7.0",
19+
"php": "^7.1",
2020
"php-http/client-common": "^1.9 || ^2.0",
2121
"php-http/discovery": "^1.0",
2222
"php-http/httplug": "^1.0 || ^2.0",
@@ -35,7 +35,7 @@
3535
},
3636
"extra": {
3737
"branch-alias": {
38-
"dev-master": "1.3-dev"
38+
"dev-master": "1.4-dev"
3939
}
4040
},
4141
"autoload": {

0 commit comments

Comments
 (0)