2016-07-21 22:01:57 +08:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Class Aliases
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This array of class aliases will be registered when this application
|
|
|
|
| is started. However, feel free to register as many as you wish as
|
|
|
|
| the aliases are "lazy" loaded so they don't hinder performance.
|
|
|
|
|
|
|
|
|
*/
|
2016-08-10 13:02:16 +08:00
|
|
|
|
2016-07-21 22:01:57 +08:00
|
|
|
return [
|
2016-08-25 22:44:03 +08:00
|
|
|
'View' => 'Blessing\View',
|
2016-08-24 22:43:04 +08:00
|
|
|
'DB' => 'Blessing\Facades\DB',
|
2016-08-25 22:44:03 +08:00
|
|
|
'Option' => 'Blessing\Option',
|
2016-08-10 13:02:16 +08:00
|
|
|
'Utils' => 'App\Services\Utils',
|
|
|
|
'Validate' => 'App\Services\Validate',
|
2016-08-25 22:44:03 +08:00
|
|
|
'Http' => 'Blessing\Http',
|
|
|
|
'Mail' => 'Blessing\Mail',
|
|
|
|
'Storage' => 'Blessing\Storage',
|
2016-08-10 13:02:16 +08:00
|
|
|
'Minecraft' => 'App\Services\Minecraft',
|
|
|
|
'Updater' => 'App\Services\Updater',
|
2016-08-25 22:44:03 +08:00
|
|
|
'Config' => 'Blessing\Config',
|
|
|
|
'Schema' => 'Blessing\Database\Schema',
|
2016-08-24 22:43:04 +08:00
|
|
|
'Boot' => 'Blessing\Foundation\Boot',
|
2016-08-25 22:44:03 +08:00
|
|
|
'Migration' => 'Blessing\Database\Migration',
|
2016-08-24 22:43:04 +08:00
|
|
|
'App' => 'Blessing\Facades\App'
|
2016-07-21 22:01:57 +08:00
|
|
|
];
|