t4web / base
ZF2 模块。一组通用(抽象)类,这些类在多个模块中被广泛使用。
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-08-26 17:28:10 UTC
README
ZF2 模块。一组通用(抽象)类,这些类在多个模块中被广泛使用。
内容
需求
- Zend Framework 2 (最新主分支)
安装
在您的 composer.json 中添加此项目
"require": { "t4web/base": "~1.0.0" }
现在运行以下命令让 composer 下载 Base
$ php composer.phar update
在您的 application.config.php 文件中启用它。
<?php return array( 'modules' => array( // ... 'T4webBase', ), // ... );