Skip to content

Commit 4db0809

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

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
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: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ 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
1216

13-
- Fix to pass only allowed options to the `ContentTypePlugin`.
17+
- Fix to pass only allowed options to the `ContentTypePlugin`.
1418

1519
## 1.15.1 - 2019-04-12
1620

@@ -27,7 +31,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
2731
(Only available with Httplug 2)
2832
- Configuration for the content_type plugin
2933
- Support for namespaced Twig classes.
30-
- Configuration option default_client_autowiring that you can set to false
34+
- Configuration option default_client_autowiring that you can set to false
3135
to prevent autowiring the HttpClient and HttpAsyncClient
3236

3337
### Changed
@@ -51,7 +55,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
5155

5256
### Added
5357

54-
- Support for any PSR-18 client.
58+
- Support for any PSR-18 client.
5559

5660
### Changed
5761

@@ -93,14 +97,14 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
9397
## 1.10.0 - 2018-03-27
9498

9599
### Added
96-
100+
97101
- Allow to configure the `AddPathPlugin` per client, under the `add_path` configuration key.
98-
- Allow to configure clients with a `service` instead of a factory.
102+
- Allow to configure clients with a `service` instead of a factory.
99103

100104
## 1.9.0 - 2018-03-06
101105

102106
### Added
103-
107+
104108
- Allow to configure the `BaseUriPlugin` per client, under the `base_uri` configuration key.
105109

106110
## 1.8.1 - 2017-12-06
@@ -113,7 +117,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
113117

114118
### Added
115119

116-
- Symfony 4 support.
120+
- Symfony 4 support.
117121
- Support autowiring of `Http\Client\Common\PluginClientFactory`.
118122
- Any third party library using `Http\Client\Common\PluginClientFactory` to create `Http\Client\Common\PluginClient`
119123
instances now gets zero config profiling.
@@ -163,8 +167,8 @@ services aliases for autowiring in Symfony 3.3.
163167

164168
### Changed
165169

166-
- We do collect profiler data after the request is processed by a plugin. With this change we
167-
will for example see the changes of `HeaderAppendPlugin` at that plugin instead of the next one.
170+
- We do collect profiler data after the request is processed by a plugin. With this change we
171+
will for example see the changes of `HeaderAppendPlugin` at that plugin instead of the next one.
168172

169173
## 1.5.0 - 2017-05-05
170174

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)