socialiteproviders/exment is a Laravel package for exment oauth2 provider for laravel socialite.
It currently has 0 GitHub stars and 3 downloads on Packagist (latest version 5.0.0).
Install it with composer require socialiteproviders/exment.
Discover more Laravel packages by socialiteproviders
or browse all Laravel packages to compare alternatives.
Last updated
composer require socialiteproviders/exment
Exment is open source software for managing information assets on the Web.
For Web Database, SFA, CRM, Business improvement, ...
GitHub
Manual
How to config API
API Reference
Please see the Base Installation Guide, then follow the provider specific instructions below.
config/services.php'exment' => [
'client_id' => env('EXMENT_CLIENT_ID'),
'client_secret' => env('EXMENT_CLIENT_SECRET'),
'redirect' => env('EXMENT_REDIRECT_URI'),
'exment_uri' => env('EXMENT_URI'), // NEED THIS ENV. This is endpoint to access Exment.
],
In Laravel 11, the default EventServiceProvider provider was removed. Instead, add the listener using the listen method on the Event facade, in your AppServiceProvider boot method.
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
$event->extendSocialite('exment', \SocialiteProviders\Exment\Provider::class);
});
Add the event to your listen[] array in app/Providers/EventServiceProvider. See the Base Installation Guide for detailed instructions.
protected $listen = [
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
// ... other providers
\SocialiteProviders\Exment\ExmentExtendSocialite::class.'@handle',
],
];
You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):
return Socialite::driver('exment')->redirect();
idnicknamenameemail