mirror of
http://124.126.16.154:8888/singularity/hyperf-saml.git
synced 2026-01-15 07:15:05 +08:00
25 lines
555 B
PHP
25 lines
555 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'type' => 'sp',
|
|
// 'type' => 'idp',
|
|
|
|
'server' => [
|
|
'idp_id' => '', // 单点登录
|
|
|
|
// sp config
|
|
// 以下内容向服务端申请
|
|
'idp_assertion_url' => '', // 判断用户是否登录
|
|
'idp_logout_url' => '', //单点退出
|
|
],
|
|
'client' => [
|
|
// idp config
|
|
|
|
// sp config
|
|
// 以下内容向服务端申请
|
|
'entity_id' => '', // 业务系统唯一标识
|
|
'acs_url' => '', // 回调地址
|
|
],
|
|
]; |