Package Data | |
---|---|
Maintainer Username: | YlsIdeas |
Maintainer Contact: | peter.fox@ylsideas.co (Peter Fox) |
Package Create Date: | 2019-07-14 |
Package Last Update: | 2024-05-29 |
Home Page: | https://feature-flags.docs.ylsideas.co/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:21:16 |
Package Statistics | |
---|---|
Total Downloads: | 995,521 |
Monthly Downloads: | 24,828 |
Daily Downloads: | 1,130 |
Total Stars: | 605 |
Total Watchers: | 12 |
Total Forks: | 38 |
Total Open Issues: | 0 |
A Feature flag is sometimes also referred to as a feature toggle or feature switch. Ultimately it's a coding strategy to be used along with source control to make it easier to continuous integrate and continuous deployment. The idea of the flags works by essentially safe guarding sections of code from executing if a feature flag isn't in a switched on state.
This package aims to make implementing such flags across your application a great deal easier by providing solutions that work with not only your code but your routes, blade files, task scheduling and validations.
You can install the package via composer:
composer require ylsideas/feature-flags
Once installed you should publish the config with the following command.
php artisan vendor:publish --provider=YlsIdeas\\FeatureFlags\\FeatureFlagsServiceProvider --tag=config
You can customise the features.php
config in a number of ways. By default four storage drivers
for the feature flags are provided, config, database, redis and chain. the first three are pretty straight forward
but the chain is essentially a composite that allows you to store across all three. For example you might want
to query a feature that's hardcoded in the config. If it does not exist it will then go on to check redis.
If it's not stored there, then it'll check the database. Afterwards it can update the other sources to improve
flag checking times.
To use the Database driver you will need to add the migration. You can do this by using the publish command.
php artisan vendor:publish --tag=features-migration
Everything is enabled by default but if you want to turn off several features add the following method calls
to the boot method of app/Providers/AppServiceProvider.php
in your project.
Features::noBlade();
Features::noScheduling();
Features::noValidations();
Features::noCommands();
To install the middleware you'll have to add it to your $routeMiddleware
inside app/Http/Kernel.php
file.
protected $routeMiddleware = [
'feature' => \YlsIdeas\FeatureFlags\Middleware\FeatureFlagState::class,
];
You can use the accessible method to check if a feature is on or off.
Features::accessible('my-feature') // returns true or false
the @feature
blade directive is a simple @if
shortcut to hide or display certain parts of the view
depending on the state of the feature. A second argument flips the state e.g. it will display the contents
of the if statement if the feature is off.
@feature('my-feature')
<p>Your feature flag is turned on.
@endfeature
@feature('my-feature', false)
<p>Your feature flag is turned off.
@endfeature
The middleware will cause routes to be blocked if the specified feature does not have the correct state.
Route::get('/', 'SomeController@get')->middleware('feature:my-feature')
Route::get('/', 'SomeController@get')->middleware('feature:my-feature,on')
Route::get('/', 'SomeController@get')->middleware('feature:my-feature,off,404')
Fields can be marked as required depending on if the feature is in a particular state.
Validator::make([
'name' => 'Peter'
'place' => 'England',
'email' => 'peter.fox@ylsideas.co'
], [
'name' => 'requiredWithFeature:my-feature' // required
'place' => 'requiredWithFeature:my-feature,on' // required
'email => 'requiredWithFeature:my-feature,off' // not required
]);
Using the following will determine if a task will run on schedule depending on the state of the feature.
$schedule->command('emails:send Peter --force')
->skipWithFeature('my-feature')
$schedule->command('emails:send Peter --force')
->skipWithoutFeature('my-other-feature')
You may run the following commands to toggle the on or off state of the feature.
php artisan feature:on my-feature
php artisan feature:off my-feature
To find out the current state of the feature within the context of a console command, run the following:
php artisan feature:state my-feature
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email peter.fox@ylsideas.co instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.