sunshinephp / ssp-talks
Talks module for use in the SunshinePHP site.
Installs: 217
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 1
Language:HTML
Requires
- league/commonmark: 0.16.0
- zendframework/zendframework: 2.2.*
README
Talks module in ZF2 to be included into the SunshinePHP main site.
Requirements
- Zend Framework 2 (latest master)
Installation
Main Setup
By cloning project
- Clone this project into your
./vendor/
directory.
With composer
-
Add this project in your composer.json:
"require": { "sunshinephp/ssp-talks": "dev-master" }
-
Now tell composer to download SspTalks by running the command:
$ php composer.phar update
Post installation
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'SspTalks', ), // ... );