Skip to content

Commit 7a42976

Browse files
authored
Allow guzzle 7 (#30)
* Check against guzzle 7 * Test with guzzle 7
1 parent 261a674 commit 7a42976

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ HandlerInterface::log(
1717
)
1818
```
1919

20+
- Allow guzzle 7
21+
2022
## 1.1.0 - 2019-09-03
2123

2224
### Added

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
}
2727
},
2828
"require": {
29-
"php": ">=7.2",
29+
"php": "^7.2",
3030
"ext-json": "*",
31-
"guzzlehttp/guzzle": "^6.1",
31+
"guzzlehttp/guzzle": "^6.1 || ^7.0.1",
3232
"psr/log": "^1.1"
3333
},
3434
"require-dev": {
@@ -48,7 +48,7 @@
4848
},
4949
"extra": {
5050
"branch-alias": {
51-
"dev-master": "1.0-dev"
51+
"dev-master": "2.0-dev"
5252
}
5353
},
5454
"minimum-stability": "stable",

0 commit comments

Comments
 (0)