PHPackages                             litepie/integrations - 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. litepie/integrations

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

litepie/integrations
====================

A Laravel package for managing API integrations similar to Facebook/Google applications

v1.0.3(8mo ago)02MITPHPPHP ^8.2|^8.3

Since Aug 26Pushed 8mo agoCompare

[ Source](https://github.com/Litepie/Integrations)[ Packagist](https://packagist.org/packages/litepie/integrations)[ RSS](/packages/litepie-integrations/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (8)Versions (4)Used By (0)

Litepie Integration Package
===========================

[](#litepie-integration-package)

A production-ready Laravel package for managing API integrations and OAuth applications. This package provides a complete integration management system with multi-tenant support.

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

[](#requirements)

- PHP 8.2 or higher
- Laravel 12.x
- MySQL 8.0+ / PostgreSQL 13+ / SQLite 3.35+

Features
--------

[](#features)

- Create and manage API integrations (OAuth clients)
- Auto-generated Client ID and Client Secret
- Multiple redirect URIs support
- Status management (active/inactive)
- Multi-tenant ready
- Laravel Passport/Sanctum authentication support
- Comprehensive API endpoints
- Policy-based authorization
- PSR-4 compliant
- Full test coverage

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

[](#installation)

Install the package via Composer:

```
composer require litepie/integration
```

Publish the configuration and migrations:

```
php artisan vendor:publish --provider="Litepie\Integration\IntegrationServiceProvider"
```

Run the migrations:

```
php artisan migrate
```

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

[](#configuration)

The package publishes a configuration file to `config/integration.php` where you can customize:

- Database table names
- Middleware settings
- Authentication guards
- Default settings

Usage
-----

[](#usage)

### Creating an Integration

[](#creating-an-integration)

```
use Litepie\Integration\Models\Integration;

$integration = Integration::create([
    'name' => 'My API Integration',
    'description' => 'Integration for my application',
    'redirect_uris' => ['https://myapp.com/callback'],
    'status' => 'active',
    'user_id' => auth()->id(),
]);
```

### API Endpoints

[](#api-endpoints)

The package provides RESTful API endpoints:

- `GET /api/integrations` - List integrations
- `POST /api/integrations` - Create integration
- `GET /api/integrations/{id}` - Show integration
- `PUT /api/integrations/{id}` - Update integration
- `DELETE /api/integrations/{id}` - Delete integration

### Multi-tenant Support

[](#multi-tenant-support)

The package automatically handles multi-tenancy by associating integrations with the authenticated user.

Testing
-------

[](#testing)

Run the test suite:

```
vendor/bin/phpunit
```

License
-------

[](#license)

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

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance60

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity53

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

Every ~28 days

Total

3

Last Release

255d ago

PHP version history (2 changes)v1.0.0PHP ^8.2

v1.0.3PHP ^8.2|^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1788735?v=4)[Renfos Technologies](/maintainers/Renfos)[@Renfos](https://github.com/Renfos)

---

Top Contributors

[![georgemjohn](https://avatars.githubusercontent.com/u/7950080?v=4)](https://github.com/georgemjohn "georgemjohn (5 commits)")

---

Tags

apilaraveloauthintegrationmulti-tenant

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/litepie-integrations/health.svg)

```
[![Health](https://phpackages.com/badges/litepie-integrations/health.svg)](https://phpackages.com/packages/litepie-integrations)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[api-platform/laravel

API Platform support for Laravel

58171.4k14](/packages/api-platform-laravel)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M151](/packages/laravel-mcp)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M131](/packages/roots-acorn)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45444.2k1](/packages/pressbooks-pressbooks)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5021.9k](/packages/simplestats-io-laravel-client)

PHPackages © 2026

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