pajaeu / socialite-seznam
Seznam.cz provider for Laravel Socialite
Installs: 75
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/pajaeu/socialite-seznam
Requires
- php: ^8.4
- illuminate/contracts: ^12.0
- illuminate/http: ^12.0
- illuminate/support: ^12.0
- laravel/socialite: ^5.24
Requires (Dev)
- laravel/pint: ^1.27
- rector/rector: ^2.3
README
Simple package that extends Laravel Socialite with Seznam.cz provider, it can be easily used for user authentication via Seznam.cz, which is quite common in Czechia.
Installation & Basic Usage
Install this package via composer:
composer require pajaeu/socialite-seznam
Add configuration to config/services.php
'seznam' => [ 'client_id' => env('SEZNAMCZ_CLIENT_ID'), 'client_secret' => env('SEZNAMCZ_CLIENT_SECRET'), 'redirect' => env('SEZNAMCZ_REDIRECT_URI') ],
Usage
You should now be able to use the provider like you would regularly use Socialite:
return Socialite::driver('seznam')->redirect();