itlogic/hash-int

Encoding and decoding integer in 6-character hash

v1.0 2014-07-07 13:31 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:34:31 UTC


README

##Encoding and decoding integer in 6-character hash

Build Status

Installation

To get the latest version of HashInt simply require it in your composer.json file.

"itlogic/hash-int": "dev-master",

You'll then need to run composer update to download it and have the autoloader updated.

Once this operation completes, open app/config/app.php, and add a new item to the providers array.

'providers' => array(

    'ItLogic\HashInt\HashIntServiceProvider',

)

You can register the facade in the aliases key of your app/config/app.php file.

'aliases' => array(

    'HashInt'			=> 'ItLogic\HashInt\Facades\HashInt',

)