composer require xiongchao/laravel-zookeeper
If using Laravel, add the Service Provider to the providers
array in config/app.php
:
[
'providers' => [
BigBoom\Zookeeper\ZookeeperServiceProvider::class,
],
]
If using Lumen, appending the following line to bootstrap/app.php
:
$app->register(BigBoom\Zookeeper\ZookeeperServiceProvider::class);
If you need use Laravel Facades, add the aliases
array in config/app.php
:
[
'aliases' => [
'Zk' => BigBoom\Zookeeper\Facades\Zk::class,
],
]
If you need use Lumen Facades, uncomment the code in bootstrap/app.php
:
$app->withFacades();
//example
<?php
use BigBoom\Zookeeper\Facades\Zk;
class TestController extends controller {
public function test ()
{
$nodeValue = Zk::getChildren('');
}
}