ZF2 Module. A set of generic (abstract) classes which are commonly used across multiple modules.
- Zend Framework 2 (latest master)
Add this project in your composer.json:
"require": {
"t4web/base": "~1.0.0"
}Now tell composer to download Base by running the command:
$ php composer.phar updateEnabling it in your application.config.phpfile.
<?php
return array(
'modules' => array(
// ...
'T4webBase',
),
// ...
);
