blessing-skin-server/config/services.php

30 lines
1.0 KiB
PHP
Raw Normal View History

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 [
'View' => 'Blessing\View',
2016-08-24 22:43:04 +08:00
'DB' => 'Blessing\Facades\DB',
'Option' => 'Blessing\Option',
2016-08-10 13:02:16 +08:00
'Utils' => 'App\Services\Utils',
'Validate' => 'App\Services\Validate',
'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',
'Config' => 'Blessing\Config',
'Schema' => 'Blessing\Database\Schema',
2016-08-24 22:43:04 +08:00
'Boot' => 'Blessing\Foundation\Boot',
'Migration' => 'Blessing\Database\Migration',
2016-08-24 22:43:04 +08:00
'App' => 'Blessing\Facades\App'
2016-07-21 22:01:57 +08:00
];