opcoding/azure-active-directory
Composer 安装命令:
composer create-project opcoding/azure-active-directory
包简介
README 文档
README
Active azure directory bundle for symfony 4 project
Routing
Add the following code in the your config/routes.yaml
opcoding_aad_bundle: resource: '@OpcodingAADBundle/Resources/config/routes.yaml'
Edit the bundles.php file and add the following code :
<?php return [ OpcodingAADBundle\OpcodingAADBundle::class => ['all' => true] ];
Edit de config/packages/knpu_oauth2_client.yml file and add the following code :
knpu_oauth2_client: clients: azure: type: azure client_id: '%env(resolve:AZURE_CLIENT_ID)%' client_secret: '%env(resolve:AZURE_CLIENT_SECRET)%' redirect_route: connect_azure_check redirect_params: {} api_version: '1.6'
Then edit the config/packages/security.yml and add the following code according to your needs:
security: providers: app: entity: class: OpcodingAADBundle:User property: username firewalls: dev: pattern: ^/(_(profiler|wdt)|css|images|js)/ security: false main: pattern: ^/ anonymous: ~ logout: path: app_logout target: / guard: authenticators: - OpcodingAADBundle\Security\AzureAuthenticator
For example, if your application request that all the users must be logged in you can configure it like that :
security: firewalls: main: pattern: ^/ anonymous: true logout: path: app_logout target: / guard: authenticators: - OpcodingAADBundle\Security\AzureAuthenticator access_control: - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/, role: ROLE_USER }
opcoding/azure-active-directory 适用场景与选型建议
opcoding/azure-active-directory 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 215 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 02 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 opcoding/azure-active-directory 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 opcoding/azure-active-directory 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 215
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2019-02-12