mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-08 07:32:48 +08:00
别名定义文件调整
This commit is contained in:
22
alias.php
22
alias.php
@@ -22,16 +22,18 @@ return [
|
|||||||
'think\cache\driver\Memcache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Memcache' . EXT,
|
'think\cache\driver\Memcache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Memcache' . EXT,
|
||||||
'think\cache\driver\Memcached' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Memcached' . EXT,
|
'think\cache\driver\Memcached' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Memcached' . EXT,
|
||||||
'think\cache\driver\Redis' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Redis' . EXT,
|
'think\cache\driver\Redis' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Redis' . EXT,
|
||||||
|
'think\cache\driver\Redisd' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Redisd' . EXT,
|
||||||
|
'think\cache\driver\Sae' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Sae' . EXT,
|
||||||
'think\cache\driver\Secache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Secache' . EXT,
|
'think\cache\driver\Secache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Secache' . EXT,
|
||||||
'think\cache\driver\Sqlite' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Sqlite' . EXT,
|
'think\cache\driver\Sqlite' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Sqlite' . EXT,
|
||||||
'think\cache\driver\Wincache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Wincache' . EXT,
|
'think\cache\driver\Wincache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Wincache' . EXT,
|
||||||
'think\cache\driver\Xcache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Xcache' . EXT,
|
'think\cache\driver\Xcache' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'Xcache' . EXT,
|
||||||
|
'think\Collection' => CORE_PATH . 'Collection' . EXT,
|
||||||
'think\Config' => CORE_PATH . 'Config' . EXT,
|
'think\Config' => CORE_PATH . 'Config' . EXT,
|
||||||
'think\config\Ini' => CORE_PATH . 'config' . DS . 'driver' . DS . 'Ini' . EXT,
|
'think\config\Ini' => CORE_PATH . 'config' . DS . 'driver' . DS . 'Ini' . EXT,
|
||||||
'think\config\Json' => CORE_PATH . 'config' . DS . 'driver' . DS . 'Json' . EXT,
|
'think\config\Json' => CORE_PATH . 'config' . DS . 'driver' . DS . 'Json' . EXT,
|
||||||
'think\config\Xml' => CORE_PATH . 'config' . DS . 'driver' . DS . 'Xml' . EXT,
|
'think\config\Xml' => CORE_PATH . 'config' . DS . 'driver' . DS . 'Xml' . EXT,
|
||||||
'think\Console' => CORE_PATH . 'Console' . EXT,
|
'think\Console' => CORE_PATH . 'Console' . EXT,
|
||||||
'think\Collection' => CORE_PATH . 'Collection' . EXT,
|
|
||||||
'think\Controller' => CORE_PATH . 'Controller' . EXT,
|
'think\Controller' => CORE_PATH . 'Controller' . EXT,
|
||||||
'think\controller\Hprose' => CORE_PATH . 'controller' . DS . 'Hprose' . EXT,
|
'think\controller\Hprose' => CORE_PATH . 'controller' . DS . 'Hprose' . EXT,
|
||||||
'think\controller\Jsonrpc' => CORE_PATH . 'controller' . DS . 'Jsonrpc' . EXT,
|
'think\controller\Jsonrpc' => CORE_PATH . 'controller' . DS . 'Jsonrpc' . EXT,
|
||||||
@@ -56,25 +58,33 @@ return [
|
|||||||
'think\Debug' => CORE_PATH . 'Debug' . EXT,
|
'think\Debug' => CORE_PATH . 'Debug' . EXT,
|
||||||
'think\Error' => CORE_PATH . 'Error' . EXT,
|
'think\Error' => CORE_PATH . 'Error' . EXT,
|
||||||
'think\Exception' => CORE_PATH . 'Exception' . EXT,
|
'think\Exception' => CORE_PATH . 'Exception' . EXT,
|
||||||
|
'think\exception\ClassNotFoundException' => CORE_PATH . 'exception' . DS . 'ClassNotFoundException' . EXT,
|
||||||
'think\exception\DbException' => CORE_PATH . 'exception' . DS . 'DbException' . EXT,
|
'think\exception\DbException' => CORE_PATH . 'exception' . DS . 'DbException' . EXT,
|
||||||
|
'think\exception\ErrorException' => CORE_PATH . 'exception' . DS . 'ErrorException' . EXT,
|
||||||
'think\exception\Handle' => CORE_PATH . 'exception' . DS . 'Handle' . EXT,
|
'think\exception\Handle' => CORE_PATH . 'exception' . DS . 'Handle' . EXT,
|
||||||
'think\exception\HttpException' => CORE_PATH . 'exception' . DS . 'HttpException' . EXT,
|
'think\exception\HttpException' => CORE_PATH . 'exception' . DS . 'HttpException' . EXT,
|
||||||
'think\exception\HttpResponseException' => CORE_PATH . 'exception' . DS . 'HttpResponseException' . EXT,
|
'think\exception\HttpResponseException' => CORE_PATH . 'exception' . DS . 'HttpResponseException' . EXT,
|
||||||
'think\exception\PDOException' => CORE_PATH . 'exception' . DS . 'PDOException' . EXT,
|
'think\exception\PDOException' => CORE_PATH . 'exception' . DS . 'PDOException' . EXT,
|
||||||
'think\exception\ErrorException' => CORE_PATH . 'exception' . DS . 'ErrorException' . EXT,
|
'think\exception\TemplateNotFoundException' => CORE_PATH . 'exception' . DS . 'TemplateNotFoundException' . EXT,
|
||||||
'think\exception\DbBindParamException' => CORE_PATH . 'exception' . DS . 'DbBindParamException' . EXT,
|
|
||||||
'think\exception\ThrowableError' => CORE_PATH . 'exception' . DS . 'ThrowableError' . EXT,
|
'think\exception\ThrowableError' => CORE_PATH . 'exception' . DS . 'ThrowableError' . EXT,
|
||||||
|
'think\exception\ValidateException' => CORE_PATH . 'exception' . DS . 'ValidateException' . EXT,
|
||||||
'think\File' => CORE_PATH . 'File' . EXT,
|
'think\File' => CORE_PATH . 'File' . EXT,
|
||||||
'think\Hook' => CORE_PATH . 'Hook' . EXT,
|
'think\Hook' => CORE_PATH . 'Hook' . EXT,
|
||||||
'think\Lang' => CORE_PATH . 'Lang' . EXT,
|
'think\Lang' => CORE_PATH . 'Lang' . EXT,
|
||||||
'think\Log' => CORE_PATH . 'Log' . EXT,
|
'think\Log' => CORE_PATH . 'Log' . EXT,
|
||||||
|
'think\log\driver\Browser' => CORE_PATH . 'log' . DS . 'driver' . DS . 'Browser' . EXT,
|
||||||
'think\log\driver\File' => CORE_PATH . 'log' . DS . 'driver' . DS . 'File' . EXT,
|
'think\log\driver\File' => CORE_PATH . 'log' . DS . 'driver' . DS . 'File' . EXT,
|
||||||
|
'think\log\driver\Sae' => CORE_PATH . 'log' . DS . 'driver' . DS . 'Sae' . EXT,
|
||||||
'think\log\driver\Socket' => CORE_PATH . 'log' . DS . 'driver' . DS . 'Socket' . EXT,
|
'think\log\driver\Socket' => CORE_PATH . 'log' . DS . 'driver' . DS . 'Socket' . EXT,
|
||||||
'think\log\driver\Trace' => CORE_PATH . 'log' . DS . 'driver' . DS . 'Trace' . EXT,
|
'think\log\driver\Trace' => CORE_PATH . 'log' . DS . 'driver' . DS . 'Trace' . EXT,
|
||||||
'think\Model' => CORE_PATH . 'Model' . EXT,
|
'think\Model' => CORE_PATH . 'Model' . EXT,
|
||||||
'think\model\Relation' => CORE_PATH . 'model' . DS . 'Relation' . EXT,
|
|
||||||
'think\model\Merge' => CORE_PATH . 'model' . DS . 'Merge' . EXT,
|
'think\model\Merge' => CORE_PATH . 'model' . DS . 'Merge' . EXT,
|
||||||
'think\model\Pivot' => CORE_PATH . 'model' . DS . 'Pivot' . EXT,
|
'think\model\Pivot' => CORE_PATH . 'model' . DS . 'Pivot' . EXT,
|
||||||
|
'think\model\Relation' => CORE_PATH . 'model' . DS . 'Relation' . EXT,
|
||||||
|
'think\Process' => CORE_PATH . 'Process' . EXT,
|
||||||
|
'think\Paginator' => CORE_PATH . 'Paginator' . EXT,
|
||||||
|
'think\paginator\Collection' => CORE_PATH . 'paginator' . DS . 'Collection' . EXT,
|
||||||
|
'think\paginator\driver\Bootstrap' => CORE_PATH . 'paginator' . DS . 'driver' . DS . 'Bootstrap' . EXT,
|
||||||
'think\Request' => CORE_PATH . 'Request' . EXT,
|
'think\Request' => CORE_PATH . 'Request' . EXT,
|
||||||
'think\Response' => CORE_PATH . 'Response' . EXT,
|
'think\Response' => CORE_PATH . 'Response' . EXT,
|
||||||
'think\response\Json' => CORE_PATH . 'response' . DS . 'Json' . EXT,
|
'think\response\Json' => CORE_PATH . 'response' . DS . 'Json' . EXT,
|
||||||
@@ -82,9 +92,6 @@ return [
|
|||||||
'think\response\Redirect' => CORE_PATH . 'response' . DS . 'Redirect' . EXT,
|
'think\response\Redirect' => CORE_PATH . 'response' . DS . 'Redirect' . EXT,
|
||||||
'think\response\View' => CORE_PATH . 'response' . DS . 'View' . EXT,
|
'think\response\View' => CORE_PATH . 'response' . DS . 'View' . EXT,
|
||||||
'think\response\Xml' => CORE_PATH . 'response' . DS . 'Xml' . EXT,
|
'think\response\Xml' => CORE_PATH . 'response' . DS . 'Xml' . EXT,
|
||||||
'think\Process' => CORE_PATH . 'Process' . EXT,
|
|
||||||
'think\paginator\Collection' => CORE_PATH . 'paginator' . DS . 'Collection' . EXT,
|
|
||||||
'think\paginator\driver\Bootstrap' => CORE_PATH . 'paginator' . DS . 'driver' . DS . 'Bootstrap' . EXT,
|
|
||||||
'think\Route' => CORE_PATH . 'Route' . EXT,
|
'think\Route' => CORE_PATH . 'Route' . EXT,
|
||||||
'think\Session' => CORE_PATH . 'Session' . EXT,
|
'think\Session' => CORE_PATH . 'Session' . EXT,
|
||||||
'think\session\driver\Memcache' => CORE_PATH . 'session' . DS . 'driver' . DS . 'Memcache' . EXT,
|
'think\session\driver\Memcache' => CORE_PATH . 'session' . DS . 'driver' . DS . 'Memcache' . EXT,
|
||||||
@@ -94,6 +101,7 @@ return [
|
|||||||
'think\template\Taglib' => CORE_PATH . 'template' . DS . 'Taglib' . EXT,
|
'think\template\Taglib' => CORE_PATH . 'template' . DS . 'Taglib' . EXT,
|
||||||
'think\template\taglib\Cx' => CORE_PATH . 'template' . DS . 'taglib' . DS . 'Cx' . EXT,
|
'think\template\taglib\Cx' => CORE_PATH . 'template' . DS . 'taglib' . DS . 'Cx' . EXT,
|
||||||
'think\template\driver\File' => CORE_PATH . 'template' . DS . 'driver' . DS . 'File' . EXT,
|
'think\template\driver\File' => CORE_PATH . 'template' . DS . 'driver' . DS . 'File' . EXT,
|
||||||
|
'think\template\driver\Sae' => CORE_PATH . 'template' . DS . 'driver' . DS . 'Sae' . EXT,
|
||||||
'think\Url' => CORE_PATH . 'Url' . EXT,
|
'think\Url' => CORE_PATH . 'Url' . EXT,
|
||||||
'think\Validate' => CORE_PATH . 'Validate' . EXT,
|
'think\Validate' => CORE_PATH . 'Validate' . EXT,
|
||||||
'think\View' => CORE_PATH . 'View' . EXT,
|
'think\View' => CORE_PATH . 'View' . EXT,
|
||||||
|
|||||||
Reference in New Issue
Block a user