Talks module in ZF2 to be included into the SunshinePHP main site.
- Zend Framework 2 (latest master)
- Clone this project into your
./vendor/
directory.
-
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
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'SspTalks', ), // ... );