zaimea/socialite-provider is a custom Socialite provider which allows your Laravel applications to authenticate users through accounts.zaimea.com.
It works exactly like any other Socialite driver (GitHub, Google, GitLab, etc.).
You can install the package via composer:
composer require zaimea/socialite-provider
or via composer.json
"repositories": [ { "type": "vcs", "url": "https://github.com/zaimea/socialite-provider" } ]
In config/services.php:
'zaimea' => [ 'client_id' => env('ZAIMEA_CLIENT_ID'), 'client_secret' => env('ZAIMEA_CLIENT_SECRET'), 'redirect' => env('ZAIMEA_REDIRECT_URI'), 'version' => env('ZAIMEA_VERSION', 'v1'), ],
.env:ZAIMEA_CLIENT_ID=your_client_id ZAIMEA_CLIENT_SECRET=your_client_secret ZAIMEA_REDIRECT_URI=https://your-app.com/auth/callback ZAIMEA_VERSION=v1