Skip to content

Commit d8e200d

Browse files
authored
Merge pull request #57 from php-http/provide-psr
have the mock client provide the PSR client implementation as well
2 parents c877d4c + 3c92c7a commit d8e200d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

Diff for: CHANGELOG.md

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

3+
## 1.5.0 - 2021-08-25
4+
5+
### Changed
6+
7+
- Provide `psr/http-client-implementation`
8+
- Drop support for `php-http/httplug: 1.*` to be sure to implement a version of the client interface that implements the PSR.
39

410
## 1.4.1 - 2020-07-14
511

Diff for: composer.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
],
1818
"require": {
1919
"php": "^7.1 || ^8.0",
20-
"php-http/client-common": "^1.9 || ^2.0",
20+
"php-http/client-common": "^2.0",
2121
"php-http/discovery": "^1.0",
22-
"php-http/httplug": "^1.0 || ^2.0",
22+
"php-http/httplug": "^2.0",
2323
"php-http/message-factory": "^1.0",
2424
"psr/http-client": "^1.0",
2525
"psr/http-factory": "^1.0",
@@ -28,7 +28,8 @@
2828
},
2929
"provide": {
3030
"php-http/async-client-implementation": "1.0",
31-
"php-http/client-implementation": "1.0"
31+
"php-http/client-implementation": "1.0",
32+
"psr/http-client-implementation": "1.0"
3233
},
3334
"require-dev": {
3435
"phpspec/phpspec": "^5.1 || ^6.0"
@@ -38,7 +39,7 @@
3839
},
3940
"extra": {
4041
"branch-alias": {
41-
"dev-master": "1.4-dev"
42+
"dev-master": "1.x-dev"
4243
}
4344
},
4445
"autoload": {

0 commit comments

Comments
 (0)