final-gene/rest-resource-authentication-module

1.3.10 2019-12-11 12:24 UTC

This package is auto-updated.

Last update: 2024-09-11 23:18:47 UTC


README

用法

将认证功能绑定到REST资源

安装

  • $ composer require final-gene/rest-resource-authentication-module

  • 在您的应用程序配置中的模块数组中添加 FinalGene\RestResourceAuthenticationModule

  • 在服务管理器配置中注册您的工厂/可调用类

      [
       'service_manager' => [
           'invokables' => [
               'FinalGene\RestResourceAuthenticationModule\Service\AuthenticationService' => 'FinalGene\RestResourceAuthenticationModule\Service\AuthenticationService',
           ],
           'factories' => [
           ],
       ],
      ];