exs / silex-darklaunch-provider
Dark launch provider bundle for Silex2
Requires
- silex/silex: ~2.0@dev
This package is auto-updated.
Last update: 2025-01-29 06:13:07 UTC
README
Provides darklaunch ability based on user ips.
Installing the EXS-silex-darklaunch-provider in a Silex project
The installation process is actually very simple. Set up a Silex project with Composer.
Once the new project is set up, open the composer.json file and add the exs/silex-darklaunch-provider as a dependency:
//composer.json //... "require": { //other bundles "exs/silex-darklaunch-provider": "@dev"
Or you could just add it via the command line:
$ composer.phar require exs/silex-darklaunch-provider ~1.0@dev
Save the file and have composer update the project via the command line:
php composer.phar update
Composer will now update all dependencies and you should see our bundle in the list:
- Installing exs/silex-darklaunch-provider (dev-master 463eb20) Cloning 463eb2081e7205e7556f6f65224c6ba9631e070a
Update the app.php to include the EXS-silex-darklaunch-provider provider:
//app.php //... $app->register(new \EXS\DarklaunchProvider\Providers\Services\DarklaunchProvider());
Add ips to active dark launched functions or services in config.php:
//... $app['exs.active.ips'] = array( '127.0.0.1', MORE IPS HERE ); //...
USAGE
Declare the service
//... use EXS\DarklaunchProvider\Services\DarklaunchService; $darkLauncher = new DarklaunchService(ARRAY_OF_ACTIVE_IPS); //... // or inject the service in your service provider //... use Pimple\ServiceProviderInterface; use Pimple\Container; class YourServiceProvider implements ServiceProviderInterface { public function register(Container $container) { $container[YOUR_SERVICE_PROVIDER_NAME] = ( function ($container) { return new YOUR_SERVICE_PROVIDER_LOCATION($container['exs.serv.darklaunch']); }); } } // in your service constructor public function __construct(DarklaunchService $darklaunchService) { $this->darklaunchService = $darklaunchService; } //...
Wrap the function or service to be dark launched and triggered by ip
//... if($darkLauncher->isActiveIp()) { FUNCTION_TO_BE_DARKLAUNCHED } // or if you already know the user ip if($darkLauncher->isActiveIp(USER_IP_HERE)) { FUNCTION_TO_BE_DARKLAUNCHED } //...
Contributing
Anyone and everyone is welcome to contribute.
If you have any questions or suggestions please let us know.