Version 0.0.1 Created by Patrick Groot
ZF2 module with frontend logic for the Bolt CMS
- Zend Framework 2 (latest master)
- ZfcBase (latest master).
- Provide Bolt frontend mappers for ZF2
- Install the ZfcBase ZF2 module
by cloning it into
./vendor/
. - Clone this project into your
./vendor/
directory.
-
Add this project in your composer.json:
"repositories": [ { "type": "vcs", "url": "https://github.com/earlhickey/pg-bolt" } ], "require": { "earlhickey/pg-bolt": "dev-master" }
-
Now tell composer to download PgBolt by running the command:
$ php composer.phar update
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'ZfcBase', 'PgBolt', ), // ... );