Skip to content

Commit

Permalink
Allow guzzle 7 (#30)
Browse files Browse the repository at this point in the history
* Check against guzzle 7

* Test with guzzle 7
  • Loading branch information
gmponos authored Jul 5, 2020
1 parent 261a674 commit 7a42976
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ HandlerInterface::log(
)
```

- Allow guzzle 7

## 1.1.0 - 2019-09-03

### Added
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
}
},
"require": {
"php": ">=7.2",
"php": "^7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.1",
"guzzlehttp/guzzle": "^6.1 || ^7.0.1",
"psr/log": "^1.1"
},
"require-dev": {
Expand All @@ -48,7 +48,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"dev-master": "2.0-dev"
}
},
"minimum-stability": "stable",
Expand Down

0 comments on commit 7a42976

Please sign in to comment.