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

v0.1.1 2026-01-19 10:50 UTC

This package is auto-updated.

Last update: 2026-01-20 10:24:18 UTC


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();