Skip to content

Commit 4332466

Browse files
committed
Fix: Drop support for unsupported PHP versions
1 parent bad3276 commit 4332466

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ matrix:
2525
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak" SYMFONY_PHPUNIT_VERSION="5.7"
2626

2727
# Test the latest stable release
28-
- php: 5.5
29-
env: SYMFONY_PHPUNIT_VERSION="5.7"
30-
- php: 5.6
31-
env: SYMFONY_PHPUNIT_VERSION="5.7"
32-
- php: 7.0
3328
- php: 7.1
3429
- php: 7.2
3530
- php: 7.3

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
66

77
- Integration for VCR Plugin
88

9+
### Changed
10+
11+
- **[BC] Dropped support for PHP 5.5, 5.6, and 7.0**
12+
913
## 1.15.2 - 2019-04-18
1014

1115
### Fixed

composer.json

Lines changed: 1 addition & 1 deletion
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/client-implementation": "^1.0",
2222
"php-http/discovery": "^1.0",

0 commit comments

Comments
 (0)