PHPackages                             gigabait93/laravel-extensions - 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. [Framework](/categories/framework)
4. /
5. gigabait93/laravel-extensions

ActiveLibrary[Framework](/categories/framework)

gigabait93/laravel-extensions
=============================

Modular extensions framework for Laravel

v3.0.1(2mo ago)133MITPHPPHP ^8.3CI passing

Since Aug 18Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/GIGABAIT93/laravel-extensions)[ Packagist](https://packagist.org/packages/gigabait93/laravel-extensions)[ RSS](/packages/gigabait93-laravel-extensions/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (14)Versions (7)Used By (0)

Laravel Extensions
==================

[](#laravel-extensions)

[![CI](https://github.com/gigabait93/laravel-extensions/actions/workflows/ci.yml/badge.svg)](https://github.com/gigabait93/laravel-extensions/actions/workflows/ci.yml)[![Security](https://github.com/gigabait93/laravel-extensions/actions/workflows/security.yml/badge.svg)](https://github.com/gigabait93/laravel-extensions/actions/workflows/security.yml)[![Latest Stable Version](https://camo.githubusercontent.com/9bf577ee8049ea96dfb12e9b111b78f181dff0be4efc35da0a5f226559d39c21/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f676967616261697439332f6c61726176656c2d657874656e73696f6e732e737667)](https://packagist.org/packages/gigabait93/laravel-extensions)[![Total Downloads](https://camo.githubusercontent.com/f1135ddc3d7f9fa91ba4216042590b508e4bf3f0d0c1d5ded8f18800c5885c88/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f676967616261697439332f6c61726176656c2d657874656e73696f6e732e737667)](https://packagist.org/packages/gigabait93/laravel-extensions)[![License](https://camo.githubusercontent.com/e433d208f05ae541eb7f55da72d2dc0a5db535a352f44bf41b2e93dc483d002f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f676967616261697439332f6c61726176656c2d657874656e73696f6e732e737667)](https://packagist.org/packages/gigabait93/laravel-extensions)[![PHP Version](https://camo.githubusercontent.com/f709fc9ee4ca5c63cf32bb5a487ba063321e62da56936ae15ecb4eed6e4904e9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f676967616261697439332f6c61726176656c2d657874656e73696f6e732e737667)](https://packagist.org/packages/gigabait93/laravel-extensions)

A powerful modular extension framework for Laravel 12+ that enables you to build scalable, maintainable applications with runtime discovery, activation control, and scaffolding utilities.

🚀 Key Features
--------------

[](#-key-features)

- **Runtime Discovery**: Automatically discover and load extensions from configured directories
- **Activation Management**: Enable/disable extensions with dependency checks and protection mechanisms
- **Flexible Storage**: Choose between file-based or database activators for persistence
- **Rich API**: Manage extensions through facade and Artisan commands (plus your own UI/API layer)
- **Async Operations**: Queue enable/disable/install operations with status monitoring
- **Persistent Tracking**: Store async operation history in database for reliable UI monitoring
- **Code Generation**: Scaffold new extensions with customizable stubs
- **Event System**: Comprehensive event dispatching for extension lifecycle
- **Multi-type Support**: Support for different extension types (Modules, Themes, etc.)

📋 Requirements
--------------

[](#-requirements)

- PHP 8.3+
- Laravel 12.0+

🔧 Installation
--------------

[](#-installation)

Install the package via Composer:

```
composer require gigabait93/laravel-extensions
```

Publish the configuration file:

```
php artisan vendor:publish --tag=extensions-config
```

If using database activator, publish and run migrations:

```
php artisan vendor:publish --tag=extensions-migrations
php artisan migrate
```

Discover existing extensions:

```
php artisan extensions:discover
```

🎯 Quick Start
-------------

[](#-quick-start)

```
use Gigabait93\Extensions\Facades\Extensions;

// Get all extensions
$extensions = Extensions::all();

// Enable extension
Extensions::enable('blog');

// Disable extension
Extensions::disable('blog');

// Install dependencies and enable
Extensions::installAndEnable('blog');
```

### Basic Commands

[](#basic-commands)

```
# List all extensions
php artisan extensions:list

# Enable extension
php artisan extensions:enable blog

# Create new extension
php artisan extensions:make Blog --type=module
```

📚 Documentation
---------------

[](#-documentation)

For detailed documentation, visit .

🧪 Testing
---------

[](#-testing)

```
composer test
composer cs-fix
composer phpstan
```

🤝 Contributing
--------------

[](#-contributing)

Contributions are welcome! Please feel free to submit a Pull Request.

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

📄 License
---------

[](#-license)

This package is open-sourced software licensed under the [MIT license](LICENSE).

🙏 Credits
---------

[](#-credits)

- [GIGABAIT93](https://github.com/GIGABAIT93)
- [All Contributors](../../contributors)

🔧 Changelog
-----------

[](#-changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

🛡️ Security
-----------

[](#️-security)

If you discover any security related issues, please email  instead of using the issue tracker.

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance87

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 98.1% 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 ~68 days

Total

4

Last Release

62d ago

Major Versions

v1.0.0 → v2.0.02025-09-10

v2.0.0 → v3.0.02026-02-06

PHP version history (2 changes)v1.0.0PHP &gt;=8.1

v2.0.0PHP ^8.3

### Community

Maintainers

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

---

Top Contributors

[![GIGABAIT93](https://avatars.githubusercontent.com/u/59637348?v=4)](https://github.com/GIGABAIT93 "GIGABAIT93 (106 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")

---

Tags

pluginlaravelpackageextensionsmodules

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/gigabait93-laravel-extensions/health.svg)

```
[![Health](https://phpackages.com/badges/gigabait93-laravel-extensions/health.svg)](https://phpackages.com/packages/gigabait93-laravel-extensions)
```

###  Alternatives

[laravel/tinker

Powerful REPL for the Laravel framework.

7.4k423.8M1.8k](/packages/laravel-tinker)[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M532](/packages/laravel-passport)[laravel/sail

Docker files for running a basic Laravel application.

1.9k186.9M1.0k](/packages/laravel-sail)[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k43.5M5.2k](/packages/larastan-larastan)[laravel/cashier

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

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

Laravel Boost accelerates AI-assisted development by providing the essential context and structure that AI needs to generate high-quality, Laravel-specific code.

3.4k10.6M274](/packages/laravel-boost)

PHPackages © 2026

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