Files
hyperf-saml/publish/saml.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' => '', // 回调地址
],
];