Collection of all OAuth2 Providers for Laravel Socialite

Maintainers

Package info

github.com/SocialiteProviders/Providers

Issues

Documentation

pkg:composer/socialiteproviders/providers

Transparency log

Statistics

Installs: 52 389

Dependents: 0

Suggesters: 0

Stars: 575

dev-master 2026-08-23 02:40 UTC

This package is auto-updated.

Last update: 2026-08-23 02:41:03 UTC


README

Documentation

Full documentation for using these providers can be found at the Documentation.

Contribute

Submit Pull Requests here for new providers. See the docs for more information.

Adding a new provider

Scaffold it rather than copying another provider by hand:

php tools/make-provider.php

It asks for the name, driver alias, OAuth version, category and any extra config keys, then writes the provider, the listener, composer.json, the README and an optional test suite. Every answer can be passed as a flag instead, so it also runs unattended:

php tools/make-provider.php --name=Frappe --oauth=2 --category="Productivity / Business" --config=base_url

Then fill in the TODOs against the provider's own OAuth docs, and link those docs in the README.

If you add tests under tests/<Provider>/, they run in CI automatically.