sunshinephp / ssp-blog
Blog module for use in the SunshinePHP site.
Installs: 31
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sunshinephp/ssp-blog
Requires
- php: >=5.3.3
This package is auto-updated.
Last update: 2025-09-23 11:11:24 UTC
README
Blogging 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-blog": "dev-master" }
-
Now tell composer to download SspBlog by running the command:
$ php composer.phar update
Post installation
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'SspBlog', ), // ... );