I just updated the guzzle dependency in one of my packages to ~5.2 and now i get an error from composer when i try to install my package in my laravel project. I'm not a pro with composer but the version seems to exist on packagist... Am i doing something wrong?
I pushed a branch called guzzle and ran composer require tuurbo/spreedly:dev-guzzle@dev and im getting
Problem 1
- Installation request for tuurbo/spreedly dev-guzzle@dev -> satisfiable by tuurbo/spreedly[dev-guzzle].
- tuurbo/spreedly dev-guzzle requires guzzlehttp/guzzle ~5.2@stable -> no matching package found.
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.
So i just created a empty folder called /test and ran composer require tuurbo/spreedly:dev-guzzle@dev and it ran successfully... So that must mean my laravel project is the issue, not the tuurbo/spreedly package?