krom / laravel-yaml-configuration
Add YAML file support to Laravel Configuration
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 7
Open Issues: 0
pkg:composer/krom/laravel-yaml-configuration
Requires
- php: >=5.4.0
- illuminate/config: 5.*
- illuminate/foundation: 5.*
- symfony/yaml: 2.*
README
This package uses Symfony/Yaml parser.
Installing
Add "krom/laravel-yaml-configuration": "2.*"
to your composer.json by running :
php composer.phar require krom/laravel-yaml-configuration
And select version : 2.*
Add support in Laravel
You have to add (or merge)
protected function bootstrappers()
{
return array_merge($this->bootstrappers, [\\krom\\Core\\Config\\LoadYamlConfiguration::class]);
}
to your app/Http/Kernel.php and/or app/Console/Kernel.php.
How to use
Just use regular php files or use yml or yaml files instead.
PHP :
<?php return [ 'debug' => false, 'key' => 'foobar', ];
Will be equivalent to :
YAML
debug: false key: foobar
Use functions
You can use any php functions like that :
routes_file: %app_path%/routes.php unit_test: %base_path:behat.yml% something: %sprintf:hell %s,world%
Enjoy it ! Feel free to fork :) !
This package is fork of devitek/yaml-configuration