PHPackages                             mblsolutions/inspireddeck-php-laravel - 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. mblsolutions/inspireddeck-php-laravel

ActivePackage

mblsolutions/inspireddeck-php-laravel
=====================================

Official Inspired Deck interface for Laravel PHP applications.

v3.0.1(2mo ago)110.2k↑125%41proprietaryPHPPHP ^8.0

Since Oct 1Pushed 2mo ago2 watchersCompare

[ Source](https://github.com/mblsolutions/inspireddeck-php-laravel)[ Packagist](https://packagist.org/packages/mblsolutions/inspireddeck-php-laravel)[ RSS](/packages/mblsolutions-inspireddeck-php-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (14)Versions (23)Used By (1)

Inspired Deck interface for Laravel
===================================

[](#inspired-deck-interface-for-laravel)

The Inspired Deck Interface for Laravel gives you an API interface into the Inspired Deck Platform for your Laravel applications.

Integration Applications
------------------------

[](#integration-applications)

Inspired Deck provides an interface for the integrator to manage their own set of security credentials. This interface is available from the ‘Integrations’ menu item of the Inspired Deck Portal.

- [Live Integration Applications](https://portal.inspireddeck.co.uk/integration) / [Staging Integration Applications](https://staging-portal.inspireddeck.co.uk/integration)
- [Live Documentation](https://portal.inspireddeck.co.uk/docs) / [Staging Documentation](https://staging-portal.inspireddeck.co.uk/docs)

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

[](#installation)

The recommended way to install Inspired Deck Larvel is through [Composer](https://getcomposer.org/).

```
composer require mblsolutions/inspireddeck-php-laravel
```

Laravel without auto-discovery
------------------------------

[](#laravel-without-auto-discovery)

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

```
\MBLSolutions\InspiredDeckLaravel\InspiredDeckServiceProvider::class,
```

If you want to use the facade for authentication, add this to your facades in app.php:

```
'InspiredDeckAuth' => \MBLSolutions\InspiredDeckLaravel\InspiredDeckAuthFacade::class,
```

Usage
-----

[](#usage)

Copy the package config to your local config with the publish command:

```
php artisan vendor:publish --provider="MBLSolutions\InspiredDeckLaravel\InspiredDeckServiceProvider"
```

A new config file will be available in `config/inspireddeck.php`, please familiarise yourself with the available environment variables that should be setup in `.env`.

```
ID_ENDPOINT=https://inspireddeck.co.uk
ID_CLIENT_ID=1
ID_SECRET=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjBmOGMwNDAxZDAy
```

### Authentication

[](#authentication)

To authenticate to Inspired Deck use the login method on the Authentication object.

```
$deckAuthentication = new \MBLSolutions\InspiredDeckLaravel\Authentication;

$deckAuthentication->login('john.doe@example.com', 'password');
```

Once authenticated, the authentication will be stored in the session key specified in the inspireddeck config.

### Checking authentication/Issuing Transactions

[](#checking-authenticationissuing-transactions)

```
$deckAuthentication = new \MBLSolutions\InspiredDeckLaravel\Authentication;

if (!$deckAuthentication->isAuthenticated()) {
    $deckAuthentication->login('john.doe@example.com', 'password');
}

// Perform transaction
$balance = new \MBLSolutions\InspiredDeck\Balance;

$result = $balance->balance([
    'serial' => 123456789
]);
```

### Further documentation

[](#further-documentation)

See the Inspired Deck Interface for PHP [package](https://github.com/mblsolutions/inspireddeck-php) for further documentation on issuing transactions.

### License

[](#license)

Inspired Deck Interface for Laravel is free software distributed under the terms of the MIT license.

A contract/subscription to Inspired Deck is required to make use of this package, for more information contact [MBL Solutions](mailto:support@mblsolutions.co.uk)

###  Health Score

55

—

FairBetter than 98% of packages

Maintenance84

Actively maintained with recent releases

Popularity29

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~137 days

Recently: every ~292 days

Total

18

Last Release

81d ago

Major Versions

v0.1.2 → v1.1.02020-01-23

v1.5.3 → v2.0.02022-12-09

v2.2.1 → v3.0.02026-02-23

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/610936?v=4)[Christian Innerbichler](/maintainers/lerouse)[@lerouse](https://github.com/lerouse)

![](https://www.gravatar.com/avatar/102e5b958c4a1e833fd8812ac866581ccf52bbc0cd9627253589025c42cf0f37?d=identicon)[hayleyberryl2s](/maintainers/hayleyberryl2s)

---

Top Contributors

[![lerouse](https://avatars.githubusercontent.com/u/610936?v=4)](https://github.com/lerouse "lerouse (22 commits)")[![hayleyberryl2s](https://avatars.githubusercontent.com/u/152175725?v=4)](https://github.com/hayleyberryl2s "hayleyberryl2s (8 commits)")[![pureskillz83](https://avatars.githubusercontent.com/u/8451038?v=4)](https://github.com/pureskillz83 "pureskillz83 (6 commits)")[![JonKnibbsPP](https://avatars.githubusercontent.com/u/132350278?v=4)](https://github.com/JonKnibbsPP "JonKnibbsPP (4 commits)")[![abbysarcade-redu](https://avatars.githubusercontent.com/u/77671868?v=4)](https://github.com/abbysarcade-redu "abbysarcade-redu (2 commits)")[![rsloan-mlbsolutions](https://avatars.githubusercontent.com/u/115983535?v=4)](https://github.com/rsloan-mlbsolutions "rsloan-mlbsolutions (2 commits)")[![MinaWilliam](https://avatars.githubusercontent.com/u/4950742?v=4)](https://github.com/MinaWilliam "MinaWilliam (1 commits)")

---

Tags

laravelgiftcardinspiredsuiteinspireddecke-gift

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/mblsolutions-inspireddeck-php-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/mblsolutions-inspireddeck-php-laravel/health.svg)](https://phpackages.com/packages/mblsolutions-inspireddeck-php-laravel)
```

###  Alternatives

[barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

19.2k124.3M624](/packages/barryvdh-laravel-debugbar)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k662.9k29](/packages/fruitcake-laravel-debugbar)[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)[laravel-doctrine/orm

An integration library for Laravel and Doctrine ORM

8425.3M87](/packages/laravel-doctrine-orm)[tucker-eric/eloquentfilter

An Eloquent way to filter Eloquent Models

1.8k4.8M26](/packages/tucker-eric-eloquentfilter)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)

PHPackages © 2026

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