dphn / sc-widgets
ScContent模块的基本示例小部件套件。
dev-master
2014-02-23 20:54 UTC
Requires
- php: >=5.4.0
- bjyoungblood/bjy-authorize: 1.4.*
- dphn/sc-content: dev-master
- zendframework/zendframework: >2.2.0rc1
- zf-commons/zfc-user: 0.1.*
This package is not auto-updated.
Last update: 2024-09-28 15:54:46 UTC
README
此模块正在处理中。
特性/目标
- 示例小部件
- 网站标题
- 简单的图像横幅
- 搜索小部件和简单集成搜索功能
- 登录小部件
安装
主要设置
通过克隆项目
- 通过克隆到
./vendor/
来安装BjyAuthorize ZF2模块。 - 通过克隆到
./vendor/
来安装ZfcBase ZF2模块。 - 通过克隆到
./vendor/
来安装ZfcUser ZF2模块。 - 通过克隆到
./vendor/
来安装[ScContent] (https://github.com/dphn/ScContent)。 - 将此项目克隆到您的
./vendor/
目录。
使用composer
-
在您的 composer.json 中添加此项目
"require": { "dphn/sc-widgets" : "dev-master" }
-
现在运行命令下载 ScWidgets
$ php composer.phar update
安装后
-
在
application.config.php
文件中启用它。<?php return array( 'modules' => array( // ... 'ZfcBase', 'ZfcUser', 'BjyAuthorize', 'ScContent', 'ScWidgets', ), // ... );
-
进一步的安装是自动的。