Skip to content

Latest commit

 

History

History
67 lines (49 loc) · 1.23 KB

README.md

File metadata and controls

67 lines (49 loc) · 1.23 KB

PgBolt

Version 0.0.1 Created by Patrick Groot

Introduction

ZF2 module with frontend logic for the Bolt CMS

Requirements

Features / Goals

  • Provide Bolt frontend mappers for ZF2

Installation

Main Setup

By cloning project

  1. Install the ZfcBase ZF2 module by cloning it into ./vendor/.
  2. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project in your composer.json:

    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/earlhickey/pg-bolt"
        }
    ],
    "require": {
        "earlhickey/pg-bolt": "dev-master"
    }
  2. Now tell composer to download PgBolt by running the command:

    $ php composer.phar update

Post installation

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

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