sebwite / config-parser
There is no license information available for the latest version (1.0.3) of this package.
sebwite/config-parser is a laravel package
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-11-01 17:52:48 UTC
README
Sebwite Config-parser is a package for the Laravel 5 framework.
The package follows the FIG standards PSR-1, PSR-2, and PSR-4 to ensure a high level of interoperability between shared PHP code.
Documentation
Tbd
Quick Installation
Begin by installing the package through Composer.
composer require sebwite/config-parser
Add the bootstrapper to both Console
and Http
kernels
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',
];
}