PHPackages                             pimplesushant/passport-token-custom-claims - 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. pimplesushant/passport-token-custom-claims

ActiveLibrary

pimplesushant/passport-token-custom-claims
==========================================

Decoder for Laravel Passport (Bearer) Access Token

0.0.1(7y ago)01591MITPHPPHP ^5.3.3 || ^7.0

Since Oct 29Pushed 6y ago1 watchersCompare

[ Source](https://github.com/pimplesushant/passport-token-custom-claims)[ Packagist](https://packagist.org/packages/pimplesushant/passport-token-custom-claims)[ RSS](/packages/pimplesushant-passport-token-custom-claims/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (2)Used By (0)

passport-token-custom-claims
============================

[](#passport-token-custom-claims)

Decoder for Laravel Passport (Bearer) Access Token.

Functionality
-------------

[](#functionality)

Decode Access-Token and return array with its IDs (token\_id, user\_id), Dates (date of expire, date of creation, start date), validity, errors and custom claims.

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

[](#installation)

Installation via composer:

```
composer require pimplesushant/passport-token-custom-claims
```

Example
-------

[](#example)

### Decode token as Object

[](#decode-token-as-object)

Object has same properties as returned array fields below.

```
use Pimplesushant\Auth\PassportToken;

$token = new PassportToken(
    'eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjI2YTUyMTMxNDAzOGQ0NGY3OTVkMzYwZGQ0ZDlkNDBlYTQyNGU4N2ZlMjUyMmVhMTk5ZjU2ZWVmODg0ZTFhNWNmNjg2Nzk3NmQ2MDRmOWY5In0.eyJhdWQiOiIyIiwianRpIjoiMjZhNTIxMzE0MDM4ZDQ0Zjc5NWQzNjBkZDRkOWQ0MGVhNDI0ZTg3ZmUyNTIyZWExOTlmNTZlZWY4ODRlMWE1Y2Y2ODY3OTc2ZDYwNGY5ZjkiLCJpYXQiOjE1MTI3NDc1OTIsIm5iZiI6MTUxMjc0NzU5MiwiZXhwIjoxNTE4MTA0MzkyLCJzdWIiOiIxIiwic2NvcGVzIjpbXX0.toksHokX_RZ7eRToL_owakMJ3gbi0nppD5yrhA9C5McVSnn3WraA4NwBcwQVlkv316BTUOaJ14unBNEg1UKGuK4EhoiTBMdT1cSkgH1HKZg2SXNBrCPi9YY4g4-4qpfxQqLeBM5JsVbouD6VeeBmDJUGVcoXDXimKEft4lgkIIqPCmWOV9HscKkRQ23lyVhXaQo4TMoCUZfM2ppyqdl2wTsrXp7woQMbqwVo9bnc4d6opj55XvMgal5MmY8YXDHpJO29UWkn2mTIL3kB6KP_WDHg5LJU0r1ua1lTn8Om97Z4eMFFUlipq7yODSgtML92kiZef7JAX3DecxJbzB9tcDk22NtSoBzlHy86ZJHU9rKhcIuKbpys6X2dAHAlkS7GUCWHqZcwN38LfjoyUEiP7QHkLNogSZQZE_I7FPKLYpxyOiR83K4IZGlOEeiEJZGCVqUWviyyIfWRA3gusk6p5cB4begxOne_l0vnNRH2WiB-WOKBytL1fKeXwaJj8AIFGj03Wvb0OYqp01ef05kiX9Y-PbHYYi_x5L8fcywXqo3ubKKiChqTCXirLH9ENcTwQT0C32Z2EgLlNnyF5iH9XQuW5UN36ke63ad0iIjlEhinoOOF8OK8IDKiHGIQ0qJwZxFG3EVDX3UFQpZUaAgYlNTTXhyT-fvf1dNR8msy-h0'
);

if ($token->valid) {
    // Check if token exists in DB (table 'oauth_access_tokens'), require \Illuminate\Support\Facades\DB class
    if ($token->existsValid()) {
        Auth::login(User::find($token->user_id));
        return redirect(...);
    }
}
```

### Decode token with static methods

[](#decode-token-with-static-methods)

```
use Pimplesushant\Auth\PassportToken;

$decoded_token = PassportToken::dirtyDecode(
    'eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjI2YTUyMTMxNDAzOGQ0NGY3OTVkMzYwZGQ0ZDlkNDBlYTQyNGU4N2ZlMjUyMmVhMTk5ZjU2ZWVmODg0ZTFhNWNmNjg2Nzk3NmQ2MDRmOWY5In0.eyJhdWQiOiIyIiwianRpIjoiMjZhNTIxMzE0MDM4ZDQ0Zjc5NWQzNjBkZDRkOWQ0MGVhNDI0ZTg3ZmUyNTIyZWExOTlmNTZlZWY4ODRlMWE1Y2Y2ODY3OTc2ZDYwNGY5ZjkiLCJpYXQiOjE1MTI3NDc1OTIsIm5iZiI6MTUxMjc0NzU5MiwiZXhwIjoxNTE4MTA0MzkyLCJzdWIiOiIxIiwic2NvcGVzIjpbXX0.toksHokX_RZ7eRToL_owakMJ3gbi0nppD5yrhA9C5McVSnn3WraA4NwBcwQVlkv316BTUOaJ14unBNEg1UKGuK4EhoiTBMdT1cSkgH1HKZg2SXNBrCPi9YY4g4-4qpfxQqLeBM5JsVbouD6VeeBmDJUGVcoXDXimKEft4lgkIIqPCmWOV9HscKkRQ23lyVhXaQo4TMoCUZfM2ppyqdl2wTsrXp7woQMbqwVo9bnc4d6opj55XvMgal5MmY8YXDHpJO29UWkn2mTIL3kB6KP_WDHg5LJU0r1ua1lTn8Om97Z4eMFFUlipq7yODSgtML92kiZef7JAX3DecxJbzB9tcDk22NtSoBzlHy86ZJHU9rKhcIuKbpys6X2dAHAlkS7GUCWHqZcwN38LfjoyUEiP7QHkLNogSZQZE_I7FPKLYpxyOiR83K4IZGlOEeiEJZGCVqUWviyyIfWRA3gusk6p5cB4begxOne_l0vnNRH2WiB-WOKBytL1fKeXwaJj8AIFGj03Wvb0OYqp01ef05kiX9Y-PbHYYi_x5L8fcywXqo3ubKKiChqTCXirLH9ENcTwQT0C32Z2EgLlNnyF5iH9XQuW5UN36ke63ad0iIjlEhinoOOF8OK8IDKiHGIQ0qJwZxFG3EVDX3UFQpZUaAgYlNTTXhyT-fvf1dNR8msy-h0',['email_verified','phone_verified']);

return ($decoded_token['valid']) ? $decoded_token['claims'] : false;
```

### Returned array $decoded\_token

[](#returned-array-decoded_token)

```
[
    "token_id" => "26a521314038d44f795d360dd4d9d40ea424e87fe2522ea199f56eef884e1a5cf6867976d604f9f9",
    "user_id" => "1",
    "expecting" => false,
    "start_at_unix" => 1512747592,
    "start_at" => "2017-12-08T15:39:52+0000",
    "incorrect" => false,
    "created_at_unix" => 1512747592,
    "created_at" => "2017-12-08T15:39:52+0000",
    "expired" => false,
    "expires_at_unix" => 1518104392,
    "expires_at" => "2018-02-08T15:39:52+0000",
    "error" => false,
    "errors" => [],
    "valid" => true,
    "claims" => [
        "email_verified" => 1,
        "phone_verified" => 1
    ]
]
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

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

2752d ago

### Community

Maintainers

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

---

Top Contributors

[![pimplesushant-perennial](https://avatars.githubusercontent.com/u/41664235?v=4)](https://github.com/pimplesushant-perennial "pimplesushant-perennial (5 commits)")[![pimplesushant](https://avatars.githubusercontent.com/u/3313656?v=4)](https://github.com/pimplesushant "pimplesushant (2 commits)")[![laskarazhar-hiveup](https://avatars.githubusercontent.com/u/50190889?v=4)](https://github.com/laskarazhar-hiveup "laskarazhar-hiveup (1 commits)")

### Embed Badge

![Health badge](/badges/pimplesushant-passport-token-custom-claims/health.svg)

```
[![Health](https://phpackages.com/badges/pimplesushant-passport-token-custom-claims/health.svg)](https://phpackages.com/packages/pimplesushant-passport-token-custom-claims)
```

PHPackages © 2026

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