how to fix this, i want to upgrade laravel 5.5. * to 5.6. * ?
Problem
It's because the core library october/rain has laravel still set as version 5.5 which gives composer an unresolvable conflict because it can't install both version at the same time. I'm not a composer crack, but prop you can override this version in the root composer.json for october/rain?
@testdnmedia why do you want to upgrade Laravel? October will only officially support LTS releases of Laravel; they change and break things far too often to be continually upgrading. If you absolutely must have it and can't for some reason implement what you actually need some other way then you could in theory do laravel/framework: 5.6 as 5.5 but I strongly recommend that you do not go down that route as we will not support it whatsoever.
:V but I usually go down that route for maximum edginess, then again im not managing a large-scale application
@Teranode then feel free to use the as composer trick to make it work; we're just not going to support it 馃槈
stumbling upon the same problem due to this MongoDB package requiring illuminate/events 5.6
I'll check backwards compatibility of the package
Anyone else stumbling across the same problem, this version works fine:
"jenssegers/mongodb": "3.3.*"
Most helpful comment
@testdnmedia why do you want to upgrade Laravel? October will only officially support LTS releases of Laravel; they change and break things far too often to be continually upgrading. If you absolutely must have it and can't for some reason implement what you actually need some other way then you could in theory do
laravel/framework: 5.6 as 5.5but I strongly recommend that you do not go down that route as we will not support it whatsoever.