agl/more-encoder

This package is abandoned and no longer maintained. No replacement package was suggested.

AGL Framework / Encoder module.

dev-master 2014-05-03 10:43 UTC

This package is not auto-updated.

Last update: 2020-12-19 09:34:31 UTC


README

Latest Stable Version Build Status

Additional Encoder module for AGL Framework.

Installation

Run the following command in the root of your AGL application:

php composer.phar require agl/more-encoder:*

Configuration

Edit app/etc/config/more/encoder/main.php and enter a key (used to encode and decode strings, must be unique).

Usage

$encoder = Agl::getInstance('more/encoder');

Encode string:

$encoder->encode('string');

Decode string:

$encoder->decode($encodedString);