Skip to content

Commit 3bad2b4

Browse files
committed
drop support for PHP < 7.1
1 parent 4e5ebba commit 3bad2b4

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ env:
1414
matrix:
1515
fast_finish: true
1616
include:
17-
- php: 5.6
17+
- php: 7.1
1818
env: $COMPOSER_OPTIONS="--prefer-lowest --prefer-stable --ignore-platform-reqs"
19-
- php: 7.0
19+
- php: 7.1
2020
env: PACKAGES="php-http/discovery:^1.0 php-http/guzzle6-adapter:^1.0 php-http/message:^1.0 xabbuh/oauth1-authentication:~1.0"
2121
- php: 7.1
2222
env: xdebug="yes"
2323
- php: 7.2
24+
- php: 7.3
2425

2526
before_install:
2627
- if [[ "$xdebug" != "yes" ]]; then phpenv config-rm xdebug.ini; fi

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+
0.7.0
5+
-----
6+
7+
* dropped support for PHP < 7.1
8+
49
0.6.0
510
-----
611

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^5.6 || ^7.0",
15+
"php": "^7.1",
1616
"php-http/client-common": "^1.0 || ^2.0",
1717
"php-http/client-implementation": "^1.0",
1818
"php-http/httplug": "^1.0 || ^2.0",
@@ -26,7 +26,7 @@
2626
"psr/http-message": "^1.0"
2727
},
2828
"require-dev": {
29-
"phpspec/phpspec": "^2.3",
29+
"phpspec/phpspec": "^2.4",
3030
"php-http/mock-client": "^1.2",
3131
"php-xapi/test-fixtures": "^1.0"
3232
},
@@ -51,7 +51,7 @@
5151
},
5252
"extra": {
5353
"branch-alias": {
54-
"dev-master": "0.6.x-dev"
54+
"dev-master": "0.7.x-dev"
5555
}
5656
}
5757
}

0 commit comments

Comments
 (0)