gdpro/gdpro-tool

A set of tool and helper.

1.0.5 2016-03-03 17:29 UTC

This package is auto-updated.

Last update: 2024-03-23 05:54:22 UTC


README

Introduction

Gdpro Tool module is a collection of tool and helper.

Changelog

doc/CHANGELOG.md

Requirements

Please see the composer.json file.

Installation

Run the following composer command:

$ composer require "gdpro/gdpro-tool:~1.0"

Alternately, manually add the following to your composer.json, in the require section:

"require": {
    "gdpro/gdpro-tool": "~1.0"
}

And then run composer update to ensure the module is installed.

Finally, add the module name to your project's config/application.config.php under the modules key:

return array(
    /* ... */
    'modules' => array(
        /* ... */
        'GdproTool',
    ),
    /* ... */
);