sunshinephp/ssp-talks

Talks module for use in the SunshinePHP site.

Installs: 220

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 1

Language:HTML

pkg:composer/sunshinephp/ssp-talks

6.1.0 2019-11-11 23:14 UTC

This package is auto-updated.

Last update: 2025-09-29 01:34:59 UTC


README

Talks module in ZF2 to be included into the SunshinePHP main site.

Requirements

Installation

Main Setup

By cloning project

  1. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project in your composer.json:

    "require": {
        "sunshinephp/ssp-talks": "dev-master"
    }
  2. Now tell composer to download SspTalks by running the command:

    $ php composer.phar update

Post installation

  1. Enabling it in your application.config.phpfile.

    <?php
    return array(
        'modules' => array(
            // ...
            'SspTalks',
        ),
        // ...
    );