You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#8, which is fine, got me thinking.
I'm using this package in HuddleService, which uses Guzzle 6. I upgraded this package and ended up with version 2.2.1, although version 2.2.2 is available. Having a Guzzle version 7 constraint is too hard. I think we're compatible with versions from 4 to 7. "guzzlehttp/guzzle": "^4|^5|^6|^7"
Supporting all these versions is tricky, to make sure we don't break anything we should use automated tools to check the compatibility on each PR. I've used Travis in the past. Here is an example where I use it to check a package compatibility with Laravel versions from 5.5 to 8 with different PHP versions.
The text was updated successfully, but these errors were encountered:
#8, which is fine, got me thinking.
I'm using this package in HuddleService, which uses Guzzle 6. I upgraded this package and ended up with version 2.2.1, although version 2.2.2 is available. Having a Guzzle version 7 constraint is too hard. I think we're compatible with versions from 4 to 7.
"guzzlehttp/guzzle": "^4|^5|^6|^7"
Supporting all these versions is tricky, to make sure we don't break anything we should use automated tools to check the compatibility on each PR. I've used Travis in the past. Here is an example where I use it to check a package compatibility with Laravel versions from 5.5 to 8 with different PHP versions.
The text was updated successfully, but these errors were encountered: