laravel-feature-kit maintained by damianulan
Description
Feature Kit laravel package. Helps managing your features within application code. Determine whether a feature is enabled or disabled globally or to a specific user.
Author
Last update
2026/04/26 14:31
(dev-main)
License
Downloads
0
Laravel FeatureKit
Description
Getting Started
Installation
You can install the package via composer in your laravel project:
composer require damianulan/laravel-feature-kit
The package will automatically register itself. Next step is to publish necessary vendor assets.
// if you need both migration and config
php artisan vendor:publish --tag=featurekit
// if you need only config and use json storage
php artisan vendor:publish --tag=featurekit-config
Registering Features
Features are autodiscovered when placed in */Features directory, but you can also register them manually in your config file.
// config/featurekit.php
'features' => [
'App\Features\MyFeature',
],
Feature information is stored in a database table, but you can also use json storage.
// config/featurekit.php
'connection' => env('FEATUREKIT_CONNECTION', 'database') // json,
Usage
Examples
Contact & Contributing
Any question You can submit to damian.ulan@protonmail.com.