2017 © Pedro Peláez
 

library laravel-hashid

Hashid for Laravel framework.

image

seguce92/laravel-hashid

Hashid for Laravel framework.

  • Wednesday, September 6, 2017
  • by seguce92
  • Repository
  • 1 Watchers
  • 0 Stars
  • 81 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 14 % Grown

The README.md

Laravel-Hashid

Install

``` bash $ composer require seguce92/laravel-hashid, (*1)


Add service provider in 'config/app.php' ``` php 'providers' => [ ... Seguce92\LaravelHashid\ServiceProvider::class, ... ],

Add alias in 'config/app.php' (optionnal), (*2)

``` php 'aliases' => [ ... 'Hashid' => Seguce92\LaravelHashid\Facade::class, ... ],, (*3)


Publish configuration ``` bash $ php artisan vendor:publish

Configuration

``` php /** * Min lenght of generated Hashid */ 'min_lenght' => 8,, (*4)

/* * Alphabet use in Hashid generation */ 'alphabet' => 'aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789',, (*5)


## Usage ``` php // without custom value salt (default is app key and 'laravel-hashid') $hashid = Hashid::encode($id); // return string $id = Hashid::decode($hasid); // return integer // with custom value salt $hashid = Hashid::encode($id, $salt); // return string $id = Hashid::decode($hasid, $salt); // return integer

The Versions

06/09 2017

dev-master

9999999-dev

Hashid for Laravel framework.

  Sources   Download

MIT beerware

The Requires

 

laravel hashid kissparadigm seguce92

06/09 2017

v2.2

2.2.0.0

Hashid for Laravel framework.

  Sources   Download

MIT

The Requires

 

laravel hashid seguce92

25/06 2017

v2.1.1

2.1.1.0

Hashid for Laravel framework.

  Sources   Download

MIT

The Requires

 

laravel hashid seguce92

25/06 2017

v2.1

2.1.0.0

Hashid for Laravel framework.

  Sources   Download

MIT

The Requires

 

laravel hashid seguce92

25/06 2017

v2.0

2.0.0.0

Hashid for Laravel framework.

  Sources   Download

MIT

The Requires

 

laravel hashid seguce92

02/05 2017

v1.2

1.2.0.0 https://github.com/KissParadigm/Laravel-Hashid

Simple package for Laravel framework.

  Sources   Download

beerware

The Requires

 

laravel hashid kissparadigm

02/05 2017

v1.1

1.1.0.0 https://github.com/KissParadigm/Laravel-Hashid

Simple package for Laravel framework.

  Sources   Download

beerware

The Requires

 

laravel hashid kissparadigm

02/05 2017

v1.0

1.0.0.0 https://github.com/KissParadigm/Laravel-Hashid

Simple package for Laravel framework.

  Sources   Download

beerware

The Requires

 

laravel hashid kissparadigm