pajaeu / socialite-seznam
Seznam.cz provider for Laravel Socialite
v0.1.1
2026-01-19 10:50 UTC
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();