LaravelPackages.net
Acme Inc.
Toggle sidebar
bestit/laravel-flagception

Laravel driver for the bestit/flagception-sdk

9
1
About bestit/laravel-flagception

bestit/laravel-flagception is a Laravel package for laravel driver for the bestit/flagception-sdk. It currently has 1 GitHub stars and 9 downloads on Packagist. Install it with composer require bestit/laravel-flagception. Discover more Laravel packages by bestit or browse all Laravel packages to compare alternatives.

Last updated

laravel-flagception

Feature toggle for laravel. Laravel provider for the flagception/flagception-sdk.

Installation and setup

Install it via composer:

composer require bestit/laravel-flagception

The package will automatically register itself.

If you are using Laravel 5.5 or higher this package will be auto-discovered. For earlier versions you have to register the service provider in your app.php:

// config/app.php

'providers' => [
    // ...
    BestIt\LaravelFlagception\FlagceptionServiceProvider::class,
];

The core of this package is the config. To publish it run:

php artisan vendor:publish --provider="BestIt\LaravelFlagception\FlagceptionServiceProvider"

Basic usage

Define a feature in your config file:

// config/flagception.php

return [
    //...
    'features' => [
        'feature_123' => [
            'active' => false,
        ],
    ],
];

Inject the FeatureManager where you need it:

class WelcomeController extends Controller
{
    public function index(FeatureManager $featureManager)
    {
        if ($featureManager->isActive('feature_123')) {
            //do something
        }
        //...
    }
}
Comments