jaimevalasek/jv-config

Use this module to generate the configurations of the modules jaimevalasek/JV.*.

dev-master 2013-09-27 17:30 UTC

This package is not auto-updated.

Last update: 2024-06-04 05:13:56 UTC


README

Create By: Jaime Marcelo Valasek

Use this module to generate the configurations of the modules jaimevalasek/JV.*

Futures video lessons can be developed and published on the website or Youtube channel http://www.zf2.com.br/tutoriais http://www.youtube.com/zf2tutoriais

Installation

Download this module into your vendor folder.

After done the above steps, open the file config/application.config.php. And add the module with the name JVConfig.

With composer

  1. Edit composer.json
"require": {
    "jaimevalasek/jv-config": "dev-master"
}
  1. Now tell composer to download JVConfig by running the command:
php composer.phar update

Post installation

<?php
return array(
    'modules' => array(
        // ...
        'JVConfig',
    ),
    // ...
);

Using the JVConfig

The settings of all modules jaimevalasek/JV.* Poderam all be centralized within this module to facilitate additions, changes, etc..

// config/module.config.php
return array(
	// ...
	The settings of the modules go here
	// ...
);