ignited / laravel-omnipay

Omnipay for Laravel & Lumen
MIT License
509 stars 100 forks source link

Unable to upgrade to Laravel 5.3 #29

Closed bkuhl closed 8 years ago

bkuhl commented 8 years ago

Can "omnipay/common": "2.3.*" be updated from 2.3.* to 2.5.*?

I'm unable to upgrade my application to 5.3 because of dependency version conflicts between the common library and Laravel for symfony/http-foundation. I believe updating this dependency will resolve the issue.

ImJustToNy commented 8 years ago

I have the same issue :/

quiquegarcia commented 8 years ago

You need to put explicitly "ignited/laravel-omnipay": "2.*" in your composer.json or use composer require ignited/laravel-omnipay:2.* command, this way the package will use omnipay-common version 2.3 instead of 2.0

That worked for me, regards.

alexw23 commented 8 years ago

https://github.com/ignited/laravel-omnipay/releases/tag/2.2.0 should fix it

"ignited/laravel-omnipay": "2.*" or "ignited/laravel-omnipay": "2.2.*" will work.

bkuhl commented 8 years ago

Thanks!