Closed dpsarrou closed 5 years ago
Just tagged a new release
Just tagged a new release
The new release does not actually work with 6.0 though. See #147
@Francismori7 I also encountered this yesterday after tagging the release, but couldn't find the issue. My workaround was to add this to the boot method of my EventServiceProvider:
event(app(SocialiteWasCalled::class));
Glad to accept any PR that fixes this
@Francismori7 tagged a new release
Issue / Motivation:
I would like to update my project to laravel 6 and this package's dependency to
illuminate/support
up to~5.8.0
is preventing me.Expected behavior:
composer update
should allow me to update the projectActual behavior:
Composer errors complaining about unsupported dependency.
Steps to reproduce the behavior:
Given
composer.json
defines a dependency of"laravel/framework": "^6.0"
, runningcomposer prohibits laravel/framework
shows:Proposed solution:
Add support for
"illuminate/support":"~5.4|~5.7.0|~5.8.0|^6.0"
similar to how laravel/socialite is supporting it.