JVBase
Create By: Jaime Marcelo Valasek, (*1)
Module base to use structure AbstractMapper and AbstractService to ZF2, (*2)
Start program with a structure ready. Advisable to use the Module JVBase for beginners and / or people who have no knowledge of how to build a well structured project., (*3)
Installation
Download this module into the vendor folder of your project., (*4)
Enable the module in the file application.config.php. Add the module JVBase., (*5)
create the service connection to the database with the name Zend\Db\Adapter\Adapter, (*6)
With composer
- Edit composer.json
"require": {
"jaimevalasek/jv-base": "dev-master"
}
- Now tell composer to download JVBase by running the command:
php composer.phar update
Post installation
<?php
return array(
'modules' => array(
// ...
'JVBase',
),
// ...
);
Usage tutorials
http://www.youtube.com/zf2tutoriais, (*7)
http://www.zf2.com.br/tutoriais, (*8)