You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Pin testbench version
* Use redirectTo method and change default redirect to the welcome page
* Defaults to Models directory
* Switch to casts() method
* Make the default controller empty and do not use middleware in controllers
* Update fixtures to use new conventions
* Use anonymous classes for migrations
* Update installation documentation
---------
Co-authored-by: avvertix <5672748+avvertix@users.noreply.github.com>
// 'host' => env('GITLAB_INSTANCE_URI', 'https://gitlab.com/') // if using the default Socialite Gitlab driver
94
95
],
95
96
```
96
97
98
+
> [!TIP]
99
+
> We do require also Socialite Providers Gitlab driver. So you need to include the `Identity::events()` in your app provider. If you want to use the Gitlab driver included in Laravel Socialite you can omitt `Identity::events()`. Remember to use `host` instead of `instance_uri` to configure the url of your Gitlab instance.
100
+
97
101
If you are using one of the community maintained [Socialite Providers](https://socialiteproviders.com/)
98
-
remember to register their events in your `EventsServiceProvider`.
102
+
remember to register their events in your `AppServiceProvider`.
99
103
100
104
If you are not using those providers this step is optional.
101
105
102
106
`oneofftech/laravel-connect-identity` provides out-of-the-box support for the `gitlab`
103
107
and `dropbox` driver. If you are using those two you might add the following call to
0 commit comments