dphn / sc-widgets
The basic example widgets kit for module 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: 2025-03-29 18:22:03 UTC
README
This module in process.
Features / Goals
- Example widget
- Site title
- Simple banner as image
- Search widget and simple integrated search feature
- Login widget
Installation
Main Setup
By cloning project
- Install the BjyAuthorize ZF2 module
by cloning it into
./vendor/
. - Install the ZfcBase ZF2 module
by cloning it into
./vendor/
. - Install the ZfcUser ZF2 module
by cloning it into
./vendor/
. - Install the [ScContent] (https://github.com/dphn/ScContent)
by cloning it into
./vendor/
. - Clone this project into your
./vendor/
directory.
With composer
-
Add this project in your composer.json:
"require": { "dphn/sc-widgets" : "dev-master" }
-
Now tell composer to download ScWidgets by running the command:
$ php composer.phar update
Post installation
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'ZfcBase', 'ZfcUser', 'BjyAuthorize', 'ScContent', 'ScWidgets', ), // ... );
-
Further installation is automatic.