Download the PHP package jkbennemann/laravel-features without Composer
On this page you can find all versions of the php package jkbennemann/laravel-features. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jkbennemann/laravel-features
More information about jkbennemann/laravel-features
Files in jkbennemann/laravel-features
Package laravel-features
Short Description 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.
License MIT
Homepage https://github.com/jkbennemann/laravel-features
Informations about the package laravel-features
Laravel Features
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.
Installation
You can install the package via composer:
After you have installed the package run the following command start the installation routine
Last steps
Migrate database files
Adding HasFeatures
trait to your User
model
After these steps you're good to go.
Common Use-Cases
1. A/B testing
- Add you
features
which should be tested - Create two
parties
and add users to them - Assign features to the parties or single users
2. A group of Beta-Testers
- Add you
features
which should be beta-tested - Create a new
party
fpr you beta-testers - Assign the users to that party
3. Preparation for an upcoming feature
- Add a new
feature
which should beINACTIVE
for now - Complete development and optionally create a special group for users e.g.
developers that should still be able to access that new feature - Extend that feature to beta-testers or remove feature-switch
4. Functionality for specific users like administrators
- Create a new
party
for administrators - Assign all
features
which should be explicitly available for them to that party - Add all relevant users to that party.
Usage
Commands
Gates
Ideas
- [x] Blade directives for
@feature
,@party
- [x] Command to update feature status
- [x] Gate support
- [x] Support for UUIDs for
User
model - [ ] Support
can()
method to use accept aFeature
model - [ ] Middleware to secure requests for features/parties
- [ ] Feature expiration to tackle carying costs
- [ ] Management for Parties/Features using Livewire
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Feel free to make suggestions of features or contribute by creating a Pull Request.
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Jakob Bennemann
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-features with dependencies
spatie/laravel-package-tools Version ^1.9.2
illuminate/contracts Version ^9.0