Skip to content

Commit 5f94c15

Browse files
committed
Drop old and unsupported php version in v3
1 parent 7e67b4c commit 5f94c15

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@ env:
1111
- TEST_COMMAND="vendor/bin/phpunit --verbose --coverage-text"
1212

1313
php:
14-
- 5.6
15-
- 7.0
1614
- 7.1
1715
- 7.2
1816
- 7.3
1917

2018
matrix:
2119
include:
22-
- php: hhvm
23-
dist: trusty
2420
- php: 7.2
2521
name: Backward compatibillity check
2622
env: DEPENDENCIES="roave/backward-compatibility-check" TEST_COMMAND="./vendor/bin/roave-backward-compatibility-check"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Uses [GitHub API v3](http://developer.github.com/v3/) & supports [GitHub API v4]
1919

2020
## Requirements
2121

22-
* PHP >= 5.6
22+
* PHP >= 7.1
2323
* A [HTTP client](https://packagist.org/providers/php-http/client-implementation)
2424
* A [PSR-7 implementation](https://packagist.org/providers/psr/http-message-implementation)
2525
* (optional) PHPUnit to run tests.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^5.6 || ^7.0",
20+
"php": "^7.1",
2121
"psr/http-message": "^1.0",
2222
"psr/cache": "^1.0",
2323
"php-http/httplug": "^1.1",
@@ -27,7 +27,7 @@
2727
"php-http/cache-plugin": "^1.4"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^5.5 || ^6.0",
30+
"phpunit/phpunit": "^6.0",
3131
"php-http/guzzle6-adapter": "^1.0",
3232
"php-http/mock-client": "^1.0",
3333
"guzzlehttp/psr7": "^1.2",

0 commit comments

Comments
 (0)