| Package Data | |
|---|---|
| Maintainer Username: | m1guelpf | 
| Maintainer Contact: | eklundchristopher@gmail.com (Christopher Eklund) | 
| Package Create Date: | 2016-08-04 | 
| Package Last Update: | 2025-02-12 | 
| Home Page: | https://socialiteproviders.com/Steam/ | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-30 03:14:47 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 422,747 | 
| Monthly Downloads: | 20,916 | 
| Daily Downloads: | 705 | 
| Total Stars: | 19 | 
| Total Watchers: | 2 | 
| Total Forks: | 18 | 
| Total Open Issues: | 1 | 
composer require socialiteproviders/steam
Please see the Base Installation Guide, then follow the provider specific instructions below.
config/services.php.'steam' => [    
  'client_id' => env('STEAM_CLIENT_ID'),  
  'client_secret' => env('STEAM_CLIENT_SECRET'),  
  'redirect' => env('STEAM_REDIRECT_URI') 
],
Configure the package's listener to the listen for SocialiteWasCalled events.
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\\Steam\\SteamExtendSocialite@handle',
    ],
];
You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):
return Socialite::with('steam')->redirect();