Initial commit

This commit is contained in:
易焱
2021-04-18 18:51:51 +08:00
commit ec705f2fa8
3240 changed files with 623103 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
return array(
'TOKEN_ON' => true, // 是否开启令牌验证 默认关闭
'TOKEN_NAME' => '__hash__', // 令牌验证的表单隐藏字段名称,默认为__hash__
'TOKEN_TYPE' => 'md5', //令牌哈希验证规则 默认为MD5
'TOKEN_RESET' => true, //令牌验证出错后是否重置令牌 默认为true
);
+1
View File
@@ -0,0 +1 @@
+4
View File
@@ -0,0 +1,4 @@
<?php
return array(
'view_filter' => array('Behavior\TokenBuildBehavior'),
);