PHPackages                             owenvoke/socialite-unstoppable-domains - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. owenvoke/socialite-unstoppable-domains

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

owenvoke/socialite-unstoppable-domains
======================================

An Unstoppable Domains provider for Laravel Socialite

v1.0.0(4y ago)314MITPHPPHP ^7.4 || ^8.0

Since Dec 23Pushed 4y ago1 watchersCompare

[ Source](https://github.com/owenvoke/socialite-unstoppable-domains)[ Packagist](https://packagist.org/packages/owenvoke/socialite-unstoppable-domains)[ Fund](https://ecologi.com/owenvoke?gift-trees)[ GitHub Sponsors](https://github.com/owenvoke)[ RSS](/packages/owenvoke-socialite-unstoppable-domains/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (4)Versions (2)Used By (0)

Unstoppable Domains Socialite Adapter
=====================================

[](#unstoppable-domains-socialite-adapter)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7e5f2b85c6fb149b54c05b4d9d22cbd1a1667be80f8027b2d98c743d8d096df0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f77656e766f6b652f736f6369616c6974652d756e73746f707061626c652d646f6d61696e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/owenvoke/socialite-unstoppable-domains)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/0824136af1c7a55168f8c496a6a2fabb61af58ee219c3e40137ce40e5feebf45/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6f77656e766f6b652f736f6369616c6974652d756e73746f707061626c652d646f6d61696e732f54657374732e7376673f7374796c653d666c61742d737175617265)](https://github.com/owenvoke/socialite-unstoppable-domains/actions)[![Static Analysis](https://camo.githubusercontent.com/3c764d537bbb07e9a3f5191495a48d859f5e72995db27edf9e765d2c848f0b8f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6f77656e766f6b652f736f6369616c6974652d756e73746f707061626c652d646f6d61696e732f537461746963253230416e616c797369732e7376673f7374796c653d666c61742d737175617265266c6162656c3d537461746963253230416e616c79736973)](https://github.com/owenvoke/socialite-unstoppable-domains/actions/workflows/static.yml)[![Total Downloads](https://camo.githubusercontent.com/d999799470a8c63399faaf2c5677c353434d842b51bd1aca8670725ff6c4f1d9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f77656e766f6b652f736f6369616c6974652d756e73746f707061626c652d646f6d61696e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/owenvoke/socialite-unstoppable-domains)[![Buy us a tree](https://camo.githubusercontent.com/910e097fe46a40add8f3484705ecbc26dc047df84b2fef027405f47408023d76/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f54726565776172652d2546302539462538432542332d6c69676874677265656e3f7374796c653d666c61742d737175617265)](https://ecologi.com/owenvoke?gift-trees)

An Unstoppable Domains provider for Laravel Socialite

Install
-------

[](#install)

Via Composer

```
composer require owenvoke/socialite-unstoppable-domains
```

Please see the [Base Installation Guide](https://socialiteproviders.com/usage), then follow the provider specific instructions below.

### Add configuration to `config/services.php`

[](#add-configuration-to-configservicesphp)

```
'unstoppable_domains' => [
    'client_id' => env('UNSTOPPABLE_DOMAINS_CLIENT_ID'),
    'client_secret' => env('UNSTOPPABLE_DOMAINS_CLIENT_SECRET'),
    'redirect' => env('UNSTOPPABLE_DOMAINS_REDIRECT_URI')
],
```

### Add provider event listener

[](#add-provider-event-listener)

Configure the package's listener to listen for `SocialiteWasCalled` events.

Add the event to your `listen[]` array in `app/Providers/EventServiceProvider`. See the [Base Installation Guide](https://socialiteproviders.com/usage) for detailed instructions.

```
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        // ... other providers
        \OwenVoke\UnstoppableDomainsSocialite\UnstoppableDomainsExtendSocialite::class,
    ],
];
```

Usage
-----

[](#usage)

You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):

```
return Socialite::driver('unstoppable_domains')->with(['login_hint' => $domain])->redirect();
```

> Note, you are required to pass in the `login_hint` which is the domain that the user provided.

By default the `email:optional` scope is provided, if you want to require an email address to be returned, use the following:

```
return Socialite::driver('unstoppable_domains')
    ->scopes(['email']) // This will override the `email:optional` scope
    ->with(['login_hint' => $domain])
    ->redirect();
```

### Returned User fields

[](#returned-user-fields)

- `id`: The id (domain) of the authenticated user
- `token`: The token of the authenticated user
- `email`: The email address of the user (optional by default)
- `wallet_address`: The wallet address of the user
- `user`
    - `sub`: The domain of the authenticated user
    - `wallet_address`: The wallet address of the user
    - `wallet_type_hint`: The method of wallet authentication the user used
    - `email`: The email address of the user (optional by default)
    - `email_verified`: A boolean stating whether the user's email has been verified (optional by default)

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Owen Voke](https://github.com/owenvoke)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Treeware
--------

[](#treeware)

You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.

It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.

You can buy trees [here](https://ecologi.com/owenvoke?gift-trees).

Read more about Treeware at [treeware.earth](https://treeware.earth).

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1698d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1899334?v=4)[Owen Voke](/maintainers/owenvoke)[@owenvoke](https://github.com/owenvoke)

---

Top Contributors

[![owenvoke](https://avatars.githubusercontent.com/u/1899334?v=4)](https://github.com/owenvoke "owenvoke (13 commits)")

---

Tags

laravelphpsocialitesocialite-providersunstoppable-domains

###  Code Quality

TestsPest

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/owenvoke-socialite-unstoppable-domains/health.svg)

```
[![Health](https://phpackages.com/badges/owenvoke-socialite-unstoppable-domains/health.svg)](https://phpackages.com/packages/owenvoke-socialite-unstoppable-domains)
```

###  Alternatives

[socialiteproviders/microsoft

Microsoft OAuth2 Provider for Laravel Socialite

357.9M33](/packages/socialiteproviders-microsoft)[socialiteproviders/apple

Apple OAuth2 Provider for Laravel Socialite

629.9M22](/packages/socialiteproviders-apple)[socialiteproviders/instagram

Instagram OAuth2 Provider for Laravel Socialite

402.0M5](/packages/socialiteproviders-instagram)[socialiteproviders/saml2

SAML2 Service Provider for Laravel Socialite

172.7M8](/packages/socialiteproviders-saml2)[kovah/laravel-socialite-oidc

OpenID Connect OAuth2 Provider for Laravel Socialite

24164.4k](/packages/kovah-laravel-socialite-oidc)[socialiteproviders/steam

Steam OpenID Provider for Laravel Socialite

21625.9k2](/packages/socialiteproviders-steam)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
