jaimevalasek/jv-config

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

Installs: 71

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/jaimevalasek/jv-config

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

This package is not auto-updated.

Last update: 2025-10-07 12:21:53 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
	// ...
);