The package provides a convenient way to introduce new functionalities into your application by simply switching them on or off or granting access only to specific groups of users.
jkbennemann/laravel-features is a Laravel package for the package provides a convenient way to introduce new functionalities into your application by simply switching them on or off or granting access only to specific groups of users..
It currently has 0 GitHub stars and 7 downloads on Packagist (latest version 0.2.0).
Install it with composer require jkbennemann/laravel-features.
Discover more Laravel packages by jkbennemann
or browse all Laravel packages to compare alternatives.
Last updated
This packages provides a simple to use possibility to introduce functionality (features)
to specific users or groups of users (parties).
This concept is also known as FeatureFlags or FeatureToggles.
You can install the package via composer:
composer require jkbennemann/laravel-features
After you have installed the package run the following command start the installation routine
#Interactive installation
php artisan feature:install
#Command if you are using uuids for your model
php artisan feature:install --uuid
#Command if you are using unsigned big integer (id)
php artisan feature:install --id
Migrate database files
php artisan migrate
Adding HasFeatures trait to your User model
//..
use Jkbennemann\Features\Models\Traits\HasFeatures;
class User extends Model
{
use HasFeatures;
//..
}
After these steps you're good to go.
features which should be testedparties and add users to themfeatures which should be beta-testedparty fpr you beta-testersfeature which should be INACTIVE for nowparty for administratorsfeatures which should be explicitly available for them to that partyuse \Jkbennemann\Features\Models\Enums\FeatureStatus;
use \Jkbennemann\Features\Models\Feature;
$feature = Features::create([
'name' => 'Functionality A',
'description' => 'This is a new feature', //optional
'status' => FeatureStatus::ACTIVE //optional, defaults to INACTIVE
]);
$party = Party::create([
'name' => 'Beta Testers',
'description' => 'This is a new party', //optional
'status' => FeatureStatus::ACTIVE //optional, defaults to INACTIVE
]);
$feature->activate(); //activates a feature
$feature->deactivate(); //deactivates a feature
$party->addFeature($feature); //assigns a feature to a party
$party->removeFeature($feature); //removes a feature from a party
$active = $user->hasFeature($feature); //user has the feature which is active
$active = $user->hasFeature('feature-slug'); //you may provide the slug of a feature
$active = $user->hasFeature('feature-slug', false); //provide false ignore the check for active features
$active = $user->hasFeatureThroughParty('feature-slug'); //checks if a feature is granted through a party
$features = $user->allFeatures(); //returns all features
$features = $user->allFeatures(false); //returns all features without checking the status
$user->giveFeature('feature-slug'); //add specific feature to a user
$user->removeFeature('feature-slug'); //remove specific feature
$user->joinParty('party-slug'); //add a user to a party
$user->addToParty('party-slug'); //add a user to a party
$user->leaveParty('party-slug'); //remove a user from a party
$user->belongsToParty('party-slug'); //checks if the user belongs to the party
$user->inParty('party-slug'); //checks if the user belongs to the party
# Create a new feature/party
php artisan feature:add {name} {description?} {--status}
php artisan party:add {name} {description?} {--status}
# List features/parties
php artisan feature:list
php artisan party:list
# Activate a feature/party
php artisan feature:activate {id|slug}
php artisan party:activate {id|slug}
# Deactivate a feature/party
php artisan feature:deactivate {id|slug}
php artisan party:deactivate {id|slug}
# Check feature
$user->can('feature-slug'); //allows to check using laravel gates
$user->can('feature-slug', true); //validates if feature is ACTIVE
$user->can('feature-slug', false); //ignores status of feature
@feature, @partyUser modelcan() method to use accept a Feature modelcomposer test
Please see CHANGELOG for more information on what has changed recently.
Feel free to make suggestions of features or contribute by creating a Pull Request.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.