Package Data | |
---|---|
Maintainer Username: | mirzap |
Maintainer Contact: | mirza.pasic@edu.fit.ba (Mirza Pasic) |
Package Create Date: | 2014-11-07 |
Package Last Update: | 2015-03-03 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-12-21 03:01:52 |
Package Statistics | |
---|---|
Total Downloads: | 3,089 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 3 |
Total Forks: | 1 |
Total Open Issues: | 2 |
This package is based on a devitek/yaml-configuration package. It uses Symfony/Yaml parser. Yaml configuration package is part of Larapress CMS.
Run the following command from your terminal:
composer require "bosnadev/yaml: 1.*"
or add this to require section in your composer.json file:
"bosnadev/yaml": "1.*"
and run composer update
After updating composer, add the YamlServiceProvider to the providers array in app/config/app.php
'providers' => [
// other providers
...
'Bosnadev\Yaml\YamlServiceProvider'
];
And that's it! You can now add your .yaml configuration files into app/config or in your package config folders. You can continue to use regular php files for configs.
PHP:
<?php
return [
'enable_registration' => true,
'themes_dir' => %public_path%/themes
];
Will be equivalent to :
---
enable_registration: true
themes_dir: %public_path%/themes
You can use paths helpers provided by Laravel like that :
routes_file: %app_path%/routes.php
unit_test: %base_path%/behat.yml
main_style: %public_path%/css/style.css
manifest: %storage_path%/meta
This package is open-sourced software licensed under MIT License.