PHPackages                             hello-one/laravel-socialite-provider - 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. hello-one/laravel-socialite-provider

ActiveLibrary

hello-one/laravel-socialite-provider
====================================

Use your hello one guest list as a Laravel Socialite Provider

0.1.6(2y ago)0135[1 issues](https://github.com/teraone/laravel-socialite-provider/issues)MITPHPPHP &gt;=8.0CI failing

Since May 18Pushed 2y ago4 watchersCompare

[ Source](https://github.com/teraone/laravel-socialite-provider)[ Packagist](https://packagist.org/packages/hello-one/laravel-socialite-provider)[ RSS](/packages/hello-one-laravel-socialite-provider/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (7)Dependencies (6)Versions (8)Used By (0)

[Laravel Socialite](https://laravel.com/docs/7.x/socialite) Provider for [hello one](https://www.hello-one.de)
==============================================================================================================

[](#laravel-socialite-provider-for-hello-one)

```
WORK IN PROGRESS - DO NOT USE IN PRODUCTION - WORK IN PROGRESS

```

Use your [hello one](https://www.hello-one.de) guest list as a login provider for your Laravel App.

Installation
------------

[](#installation)

1. You can install this package via composer using the following command:

    ```
    composer require hello-one/laravel-socialite-provider
    ```

    The package will automatically register itself using [package discovery](https://laravel.com/docs/packages#package-discovery).
2. Add your app as a OAuth Client on our [dashboard](https://dashboard.hello-one.de/).

    As `Redirect Callback URL` we suggest `https://{{yourLaravelApplication.com}}/hello-one/callback`

    Add the Client ID and Client Secret to your `.env` file

    ```
    HELLO_ONE_SOCIALITE_CLIENT_ID={{ CLIENT_ID }}
    HELLO_ONE_SOCIALITE_CLIENT_SECRET={{ CLIENT_SECRET }}
    HELLO_ONE_SOCIALITE_CLIENT_REDIRECT={{ https://yourLaravelApplication.com/hello-one/callback }}
    HELLO_ONE_SOCIALITE_PROJECT_URL={{ https://your-hello-one-default-domain.com }}
    ```

    Or publish the configuration

    ```
    php artisan vendor:publish --tag 'hello-one-socialite'
    ```

    and edit `config/hello-one-socialite.php` accordingly.
3. Create your routes in `web.php`

    ```
    Route::get( 'hello-one/login', [ \App\Http\Controllers\Controller::class, 'redirectToProvider' ]);
    Route::get( 'hello-one/callback', [ \App\Http\Controllers\Controller::class, 'handleProviderCallback' ]);
    ```
4. Create your controller methods

    ```
    /**
     * Redirect the user to the hello one login/authorization page.
     *
     * @return \Symfony\Component\HttpFoundation\RedirectResponse
     */
    public function redirectToProvider(\Illuminate\Http\Request $request)
    {
       return \Socialite::driver('hello-one-guest')
           ->stateless()
           ->scopes(['account:read'])
           ->redirect();

    }

    /**
     * Obtain the user information from hello one.
     *
     * @return \Illuminate\Http\Response
     */
    public function handleProviderCallback()
    {
        $user = \Socialite::driver('hello-one-guest')
            ->stateless()
            ->scopes(['account:read'])
            ->user();

        echo 'Hi' . $user->email;
    }
    ```
5. Visit `https://{{yourLaravelApplication.com}}/hello-one/login` and you will be redirected to hello one to login/authorize.

Documentation
-------------

[](#documentation)

Please notice our [OAuth Documentation](https://docs.hello-one.de/project-settings/oauth.html)

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

[](#contributing)

Feel free to open a ticket, submit a Pull Request or ask our [Support Team](mailto:info@hello-one.de)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 60% 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

Every ~226 days

Recently: every ~334 days

Total

7

Last Release

826d ago

PHP version history (3 changes)0.1.0PHP &gt;=7.3

0.1.5PHP &gt;=7.3|&gt;=8.0

0.1.6PHP &gt;=8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/34bb3ed24e78987d5f89cff121c51fd55070a90f2887eba16583a78cb77acb50?d=identicon)[teraone](/maintainers/teraone)

---

Top Contributors

[![TheTr0llCat](https://avatars.githubusercontent.com/u/33858671?v=4)](https://github.com/TheTr0llCat "TheTr0llCat (3 commits)")[![pk-informatics](https://avatars.githubusercontent.com/u/1331770?v=4)](https://github.com/pk-informatics "pk-informatics (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/hello-one-laravel-socialite-provider/health.svg)

```
[![Health](https://phpackages.com/badges/hello-one-laravel-socialite-provider/health.svg)](https://phpackages.com/packages/hello-one-laravel-socialite-provider)
```

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)

PHPackages © 2026

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