vunh00 / yaml-configuration
Add YAML file support to Laravel Configuration
3.1.1
2016-08-20 20:09 UTC
Requires
- php: >=5.4.0
- laravel/framework: ~5.2
- symfony/yaml: 3.*
This package is not auto-updated.
Last update: 2025-06-28 09:37:11 UTC
README
This package uses Symfony/Yaml parser.
Installing
Add "vunh00/yaml-configuration": "3.1.*"
to your composer.json by running :
php composer.phar require vunh00/yaml-configuration
And select version : 3.1.*
Add support in Laravel
You have to add (or merge)
protected function bootstrappers() { $this->bootstrappers[] = 'Vunh00\Core\Config\LoadYamlConfiguration'; return $this->bootstrappers; }
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