mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-02 05:02:48 +08:00
41 lines
2.1 KiB
PHP
41 lines
2.1 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | TOPThink [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011 http://topthink.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
// 系统类库映射定义
|
|
return [
|
|
'Think\App' => CORE_PATH . 'App.php',
|
|
'Think\Log' => CORE_PATH . 'Log.php',
|
|
'Think\Log\Driver\File' => CORE_PATH . 'Log/Driver/File.php',
|
|
'Think\Config' => CORE_PATH . 'Config.php',
|
|
'Think\Route' => CORE_PATH . 'Route.php',
|
|
'Think\Exception' => CORE_PATH . 'Exception.php',
|
|
'Think\Model' => CORE_PATH . 'Model.php',
|
|
'Think\Db' => CORE_PATH . 'Db.php',
|
|
'Think\Db\Driver' => CORE_PATH . 'Db/Driver.php',
|
|
'Think\Template' => CORE_PATH . 'Template.php',
|
|
'Think\Error' => CORE_PATH . 'Error.php',
|
|
'Think\Cache' => CORE_PATH . 'Cache.php',
|
|
'Think\Cache\Driver\File' => CORE_PATH . 'Cache/Driver/File.php',
|
|
'Think\Tag' => CORE_PATH . 'Tag.php',
|
|
'Think\Session' => CORE_PATH . 'Session.php',
|
|
'Think\Cookie' => CORE_PATH . 'Cookie.php',
|
|
'Think\Controller' => CORE_PATH . 'Controller.php',
|
|
'Think\View' => CORE_PATH . 'View.php',
|
|
'Think\Url' => CORE_PATH . 'Url.php',
|
|
'Think\Verify' => CORE_PATH . 'Verify.php',
|
|
'Think\Debug' => CORE_PATH . 'Debug.php',
|
|
'Think\Input' => CORE_PATH . 'Input.php',
|
|
'Think\Parser' => CORE_PATH . 'Parser.php',
|
|
'Think\Lang' => CORE_PATH . 'Lang.php',
|
|
'Think\Filter' => CORE_PATH . 'Filter.php',
|
|
'Think\Oauth' => CORE_PATH . 'Oauth.php',
|
|
];
|