Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 586 Bytes

readme.md

File metadata and controls

22 lines (16 loc) · 586 Bytes

Inspired by the phanan/cascading-config package.

Installation

composer require dimbo/cascading-config

Usage

Add the LoadCascadingConfiguration class to the Kernel's bootstrappers section right after LoadConfiguration:

    protected $bootstrappers = [
        //...
        \Illuminate\Foundation\Bootstrap\LoadConfiguration::class,
        \Dimbo\CascadingConfig\LoadCascadingConfiguration::class,
        //...
    ];

Remember to do that in both app\Console\Kernel.php and app\Http\Kernel.php.