alamb/auth-service

0.8 2019-12-30 03:01 UTC

This package is auto-updated.

Last update: 2024-09-29 05:28:33 UTC


README

##laravel 5.5.*

composer 指令

composer require alamb/auth-service

###1.先将配置文件发布到config目录下面

php artisan vendor:publish

###2.在app/config目录注册我们的服务提供者

   'providers'=> [
       ...
       \Alamb\AuthService\AuthProvider::class,
   ]

####测试用例

   public function test()
      {
          $response=app('authService')->getResponse(
              'POST', //请求类型
            'http://new.alamb.com/login',  //请求连接
            [                                  //请求数据
                'password'=>"1234567",
                'phone'=>'13435439932',]
            );
          dump($response);
      }
          

##在lumen下安装必要的包拓展包