Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 855 Bytes

README.md

File metadata and controls

47 lines (35 loc) · 855 Bytes

laravel-zookeeper

Installation

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,
        ],
    ]

Using

//example
<?php
use BigBoom\Zookeeper\Facades\Zk;

class TestController extends controller {

    public function test ()
    {
        $nodeValue = ZK::getNodeData('');
    }
}