Merge branch 'master' of git.int.haowumc.com:arch/php-auth-client

This commit is contained in:
候学杰 2018-05-02 10:55:42 +08:00
commit ebaae507a4

View File

@ -14,14 +14,17 @@ composer require arch/php-auth-client
### 代码中启用
注册中间件
```PHP
* 注册中间件
```php
$app->routeMiddleware([
'auth' => PdAuth\Middleware\Authenticate::class,
]);
```
注册服务
```PHP
* 注册服务
```php
$app->register(PdAuth\PdAuthServiceProvider::class);
```