PHPackages                             builtbyotte/pterodactyl-sso - 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. builtbyotte/pterodactyl-sso

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

builtbyotte/pterodactyl-sso
===========================

Single Sign-On (SSO) implementation for Laravel applications

v1.0.0.0(3mo ago)023MITPHPPHP ^8.1|^8.2|^8.3

Since Mar 5Pushed 3mo agoCompare

[ Source](https://github.com/Otte-S/Pterodactyl-SSO)[ Packagist](https://packagist.org/packages/builtbyotte/pterodactyl-sso)[ RSS](/packages/builtbyotte-pterodactyl-sso/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Pterodactyl SSO
===============

[](#pterodactyl-sso)

Pterodactyl SSO is a package for implementing Single Sign-On (SSO) authorizations in your Laravel project. This package allows you to authorize users on a Laravel panel from another website.

> **Note:** This package is an adaptation of the abandoned [WemX SSO](https://github.com/WemXPro/sso-pterodactyl) package, updated for Laravel 10, 11, and 12 and maintained by BuiltByOtte.

Requirements
------------

[](#requirements)

- PHP 8.1 or higher
- Laravel 10 or higher

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

[](#installation)

To install the package, use Composer:

```
composer require builtbyotte/sso
```

Configuration
-------------

[](#configuration)

1. Publish the configuration file by running the following command:

```
php artisan vendor:publish --tag=sso
```

This command will publish the config/sso.php file, where you can set the secret key for SSO authorization.

2. Generate new SSO key

```
php artisan sso:generate
```

Make sure to paste the SSO key in your environment configuration

Usage
-----

[](#usage)

1. Generate a access token for using a GET request from your application
2. Redirect the user to the SSO redirect with their token

```
public function loginPanel()
{
    $response = Http::get("https://panel.example.com/sso/", [
        'sso_secret' => "xxxxxxx",
        'user_id' => 1
    ]);

    if (!$response->successful()) {
        $message = $response['success'] && !$response['success']
            ? $response['message']
            : 'Something went wrong, please contact an administrator.';

        return redirect()->back()->withError($message);
    }

    return redirect()->intended($response['redirect']);
}
```

After being redirected to the /sso-login route, the user will be automatically authorized on the Laravel panel if their email address matches a record in the database.

Support
-------

[](#support)

If you have any questions or issues, please create a new issue in the project repository on GitHub.

License file for details.
-------------------------

[](#license-file-for-details)

This is an adaptation of the original WemX SSO package which was abandoned. Original author: WemX-Pro

This project is licensed under the MIT License.

###  Health Score

39

—

LowBetter than 85% of packages

Maintenance81

Actively maintained with recent releases

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

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

111d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f7b93d8c971b7b031c6cae0deecd1b15caa1ef3ad97a49961ca2d25fea28f35e?d=identicon)[Otte](/maintainers/Otte)

---

Top Contributors

[![Mubeen142](https://avatars.githubusercontent.com/u/58806240?v=4)](https://github.com/Mubeen142 "Mubeen142 (18 commits)")[![Otte-S](https://avatars.githubusercontent.com/u/128637052?v=4)](https://github.com/Otte-S "Otte-S (11 commits)")[![GIGABAIT93](https://avatars.githubusercontent.com/u/59637348?v=4)](https://github.com/GIGABAIT93 "GIGABAIT93 (4 commits)")[![PadowYT2](https://avatars.githubusercontent.com/u/71085027?v=4)](https://github.com/PadowYT2 "PadowYT2 (2 commits)")

### Embed Badge

![Health badge](/badges/builtbyotte-pterodactyl-sso/health.svg)

```
[![Health](https://phpackages.com/badges/builtbyotte-pterodactyl-sso/health.svg)](https://phpackages.com/packages/builtbyotte-pterodactyl-sso)
```

###  Alternatives

[directorytree/ldaprecord-laravel

LDAP Authentication &amp; Management for Laravel.

5742.2M17](/packages/directorytree-ldaprecord-laravel)[illuminate/auth

The Illuminate Auth package.

9327.9M1.2k](/packages/illuminate-auth)[hasinhayder/tyro

Tyro - The ultimate Authentication, Authorization, and Role &amp; Privilege Management solution for Laravel 12 &amp; 13

6753.6k5](/packages/hasinhayder-tyro)[masterix21/laravel-licensing

Laravel licensing package with polymorphic assignment to any model, activation keys, expirations/renewals, and seat control via LicenseUsage. Supports offline verification with public-key–signed tokens, a CLI to generate/rotate/revoke keys, and an extensible architecture via config and contracts.

1542.1k4](/packages/masterix21-laravel-licensing)

PHPackages © 2026

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