sebwite / config-parser
此软件包最新版本(1.0.3)没有可用的许可信息。
sebwite/config-parser 是一个 Laravel 软件包
1.0.3
2016-02-05 22:15 UTC
Requires
- php: >=5.5.9
- sebwite/support: ~1.0
This package is not auto-updated.
Last update: 2024-09-20 17:22:42 UTC
README
Sebwite Config-parser 是 Laravel 5 框架的软件包。
该软件包遵循 FIG 标准 PSR-1、PSR-2 和 PSR-4,以确保共享 PHP 代码之间的高互操作性。
文档
待定
快速安装
首先通过 Composer 安装软件包。
composer require sebwite/config-parser
将引导程序添加到 Console
和 Http
内核中
class Kernel extends ConsoleKernel
{
protected $bootstrappers = [
'Illuminate\Foundation\Bootstrap\DetectEnvironment',
'Illuminate\Foundation\Bootstrap\LoadConfiguration',
'Sebwite\ConfigParser\DecorateConfiguration',
'Illuminate\Foundation\Bootstrap\ConfigureLogging',
'Illuminate\Foundation\Bootstrap\HandleExceptions',
'Illuminate\Foundation\Bootstrap\RegisterFacades',
'Illuminate\Foundation\Bootstrap\SetRequestForConsole',
'Illuminate\Foundation\Bootstrap\RegisterProviders',
'Illuminate\Foundation\Bootstrap\BootProviders',
];
}