t4web / base
ZF2 Module. A set of generic (abstract) classes which are commonly used across multiple modules.
1.0.1
2015-10-23 09:43 UTC
Requires
- php: >=5.4.0
- zendframework/zendframework: ~2.5.0
Requires (Dev)
- phpunit/phpunit: 4.5.*
This package is auto-updated.
Last update: 2024-10-26 17:47:58 UTC
README
ZF2 Module. A set of generic (abstract) classes which are commonly used across multiple modules.
Contents
Requirements
- Zend Framework 2 (latest master)
Installation
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 update
Enabling it in your application.config.php
file.
<?php return array( 'modules' => array( // ... 'T4webBase', ), // ... );