Looking to hire Laravel developers? Try LaraJobs

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
Links
Downloads
0

Comments
comments powered by Disqus

Laravel FeatureKit

Static Badge   Licence   Static Badge

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.