jaimevalasek / jv-base
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.
dev-master
2013-10-01 17:00 UTC
Requires
- php: >=5.3.3
- zendframework/zendframework: 2.*
This package is not auto-updated.
Last update: 2025-05-06 07:45:05 UTC
README
Create By: Jaime Marcelo Valasek
Module base to use structure AbstractMapper and AbstractService to ZF2
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.
Installation
Download this module into the vendor folder of your project.
Enable the module in the file application.config.php. Add the module JVBase.
create the service connection to the database with the name Zend\Db\Adapter\Adapter
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', ), // ... );