pieter/yaml
yaml parser for laravel 4
1,276
1
| Install | |
|---|---|
composer require pieter/yaml |
|
| PHP: | >=5.3.0 |
| License: | MIT |
| Last Updated: | Oct 1, 2014 |
| Links: | GitHub · Packagist |
Maintainer: broklyngagah
L4-yaml file parser
Now this package support for laravel 5
This using symfony2 yaml component.
installing
for simple way, try using composer, add this on your composer.json file in require tag
"pieter/yaml": "dev-master"
and run from terminal
~/php composer.phar update "pieter/yaml"
after that, add this code on app/config/app.php
array(
'providers' => array (
other providers,
'Pieter\Yaml\YamlServiceProvider',
),
'aliases' => array (
other aliases,
'Yaml' => 'Pieter\Yaml\Facades\Yaml',
)
),
)
Config
If you want to create custom config, you can use default config and publish to your project config folder
~/php artisan config:publish pieter/yaml
How to use
just create in yaml on app/config folder and call from your controller
\Yaml::setFile('[your_file].yml');
return \Yaml::parsing();
enjoy it !