I have followed the instructions for implementing the Strava Socialite provider on a fresh Laravel 5.5. install: http://socialiteproviders.github.io/providers/strava/
The only change I've made is to wrap the array key in a string in App/Providers/EventServiceProvider.php as below as it complained about unknown constant otherwise:
protected $listen = [
'App\Events\Event' => [
'App\Listeners\EventListener',
],
'\SocialiteProviders\Manager\SocialiteWasCalled' => [
'SocialiteProviders\Strava\StravaExtendSocialite@handle'
]
];
The error I get is:
InvalidArgumentException
Driver [strava] not supported.
Is there a known issue with 5.5 or is it obvious I've missed a step?