dev-master
9999999-dev https://github.com/MEDIGO/laika-php
MIT
The Requires
The Development Requires
Wallogit.com
2017 © Pedro Peláez
laika-php is a PHP library that connects applications with the Laika feature flag service (https://github.com/MEDIGO/laika). It is used for applications to know which flags are activated in the current environment and adapt to it., (*1)
Add, (*2)
"medigo/laika": "dev-master"
to composer.json and run, (*3)
php composer.phar update
When using Laika you need to configure in your environment:, (*4)
Initialize the library and get all the features from the database, (*5)
public function __construct($environment, $host, $username, $password)
{
$this->client = new Laika($environment, $host, $username, $password);
$this->client->fetchAllFeatures();
return $this->client;
}
Use the isEnabled() function to know whether the flag is activated or not in the current environment., (*6)
$myVar = 'the flag is disabled';
if ($laika->isEnabled('FLAG_NAME')) {
$myVar = 'the flag is enabled';
}
Run, (*7)
phpunit tests/LaikaTest.php
Copyright © 2017 MEDIGO GmbH., (*8)
Laika is licensed under the MIT License. See LICENSE for the full license text., (*9)
MIT