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(6mo ago)02MITPHPPHP ^8.2|^8.3

Since Aug 26Pushed 6mo agoCompare

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

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

34

—

LowBetter than 77% of packages

Maintenance66

Regular maintenance activity

Popularity3

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

208d 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

[laragear/two-factor

On-premises 2FA Authentication for out-of-the-box.

339785.3k8](/packages/laragear-two-factor)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[alajusticia/laravel-logins

Session management in Laravel apps, user notifications on new access, support for multiple separate remember tokens, IP geolocation, User-Agent parser

2011.0k](/packages/alajusticia-laravel-logins)

PHPackages © 2026

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