sunshinephp/ssp-blog

There is no license information available for the latest version (dev-master) of this package.

Blog module for use in the SunshinePHP site.

dev-master 2014-03-09 14:44 UTC

This package is auto-updated.

Last update: 2024-04-23 08:00:37 UTC


README

Blogging 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-blog": "dev-master"
    }
  2. Now tell composer to download SspBlog by running the command:

    $ php composer.phar update

Post installation

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

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