-
Notifications
You must be signed in to change notification settings - Fork 48
Make Guzzle 5 a suggestion not a requirement #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make Guzzle 5 a suggestion not a requirement #27
Conversation
composer.json
Outdated
| "php": ">=5.4", | ||
| "guzzlehttp/guzzle": "5.*", | ||
| "guzzlehttp/cache-subscriber": "0.1.*" | ||
| "php": ">=5.4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI tests are failing-- it looks like the dependency changes require PHP 5.5.
|
Thanks for the contribution! Would be happy to merge this in once the CI tests pass. |
|
Will take a look, not sure why moving the deps without changing the version constraints would have caused that. By the way php 5.4 was end of life a while ago, 5.5 will be in 22 days |
|
Thanks-- no issues at all with bumping the requirements up to 5.5. |
|
@jkodumal I've updated the php requirement, the version of PHP that circle ci uses and fixed the version one of the dev dependencies being pulled in as the latest version needed php >=5.6 |
|
Sorry for the delay @richardmiller ! |
add new version of allFlags() that captures more metadata
Initial PR to make Guzzle 5 a suggestion rather than a requirement. Intending to follow up with a Guzzle 6 compatible implementation of the Feature Requester.