Skip to content

jorenvh/Hashify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hashify

This Laravel package makes it easy to generate random strings from a given charset. It can also generate database table and/or column unique strings.

Installation

This package can be installed through Composer.

composer require jorenvanhocht/hashify

You must register the service provider.

// config/app.php
'provider' => [
    ...
    jorenvanhocht\Hashify\Providers\HashifyServiceProvider::class,
    ...
];

This package also comes with a facade, which provides an easy way to call the class.

// config/app.php
'aliases' => [
    ...
    'Hashify'    => jorenvanhocht\Hashify\Facades\Hashify::class,
    ...
];

You can publish the config file of this package with this command:

php artisan vendor:publish --provider="jorenvanhocht\Hashify\HashifyServiceProvider"

The following config file will be published in config/hashify.php

<?php

return [
    'charsets' => [
        'database' => 'ABCDEFGHIJKLMNOPQRSTUVWabcdefghijklmnopqrstuvw0123456789',
    ],
];

Usage

private $hashify;
public function __construct(Hashify $hashify)
{
	$this->hashify = $hashify;
}

public function myMethod()
{
	// random string
	echo $this->hashify->make($minLength, $maxLength);

	// database unique random string
	echo $this->hashify->make()->unqique('users');
	echo $this->hashify->make()->unqique('users', 'colName');
	echo $this->hashify->make(2, 10)->unqique('users', 'colName');
}

To do

The usage of different char sets.

License

The MIT License (MIT). Please see License File for more information.

About

Laravel package for generate random (database unique) strings

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages