AlexanderZon / laravel-hashids by AlexanderZon
forked from Torann/laravel-hashids

Fork from toran/hashids: Laravel package for Hashids
78
0
3
Package Data
Maintainer Username: AlexanderZon
Maintainer Contact: daniel@lyften.com (Daniel Stainback)
Package Create Date: 2015-04-09
Package Last Update: 2015-04-09
Home Page:
Language: PHP
License: BSD 2-Clause
Last Refreshed: 2024-04-25 15:14:09
Package Statistics
Total Downloads: 78
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Hashids for Laravel 5

Latest Stable Version Total Downloads

This package uses the classes created by hashids.org

Generate hashes from numbers, like YouTube or Bitly. Use hashids when you do not want to expose your database ids to the user.


Installation

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

"alexanderzon/laravel-hashids": "dev-master"

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

Once Hashids is installed you need to register the service provider with the application. Open up config/app.php and find the providers key.

'AlexanderZon\Hashids\HashidsServiceProvider'

There is no need to add the Facade, the package will add it for you.

Publish the configurations

Run this on the command line from the root of your project:

$ php artisan config:publish alexanderzon/laravel-hashids

A configuration file will be publish to config/laravel-hashids.php.

Laravel 4 Installation

Add verison 1.0 of Hashids in your composer.json file.

"alexanderzon/laravel-hashids": "3.0.*"

And following the directions in the README on version 1.0.

Usage

Once you've followed all the steps and completed the installation you can use Hashids.

Encodeing

You can simply encode a single id:

Hashids::encode(1); // Returns Ri7Bi

or multiple..

Hashids::encode(1, 21, 12, 12, 666); // Returns MMtaUpSGhdA

Decodeing

Hashids::decode(Ri7Bi);

// Returns
int 1

or multiple..

Hashids::decode(MMtaUpSGhdA);

// Returns
array (size=5)
0 => int 1
1 => int 21
2 => int 12
3 => int 12
4 => int 666

Changelog

2.0.0

  • Upgraded to Laravel 5
  • Upgraded to Hashids 1.0.5

1.0.0

  • Several public functions are renamed to be more appropriate:

    • Function encrypt() changed to encode()
    • Function decrypt() changed to decode()
    • Function encryptHex() changed to encodeHex()
    • Function decryptHex() changed to decodeHex()

    Hashids was designed to encode integers, primary ids at most. Hashids is the wrong algorithm to encrypt sensitive data. So to encourage more appropriate use, encrypt/decrypt is being "downgraded" to encode/decode.

  • Version tag added: 1.0

  • README.md updated

All credit for Hashids goes to Ivan Akimov (@ivanakimov), thanks to for making it!