LaravelPackages.net
Acme Inc.
Toggle sidebar
kaantanis/coderator

Simple unique code generator with optional configurations

215
0
v1.0.3
About kaantanis/coderator

kaantanis/coderator is a Laravel package for simple unique code generator with optional configurations. It currently has 0 GitHub stars and 215 downloads on Packagist (latest version v1.0.3). Install it with composer require kaantanis/coderator. Discover more Laravel packages by kaantanis or browse all Laravel packages to compare alternatives.

Last updated

Simple unique code generator with optional configurations

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package provides a simple unique code generator with optional configurations.

Installation

You can install the package via composer:

composer require kaantanis/coderator

You can publish the config file with:

php artisan vendor:publish --tag="coderator-config"

This is the contents of the published config file:

return [
    'default_length' => 6,
];

Usage

$coderator = new \KaanTanis\Coderator\Coderator();

$my_code = $coderator->model(\App\Models\Product:class)
    ->field('code') // required. For create unique code
    ->prefix('#PR') // optional. default is empty
    ->length(6) // optional. except prefix, default is 6
    ->generate(); // returns a unique code
// $my_code = '#PRAY81QH'

// Without optional configurations
$my_code = $coderator->model(\App\Models\Product:class)
    ->field('code') // required. For create unique code
    ->generate(); // returns a unique code    
// $my_code = '8EYQHG'

// Now you can use it this unique code for your model. E.g. Product model
Product::create([
    'code' => $my_code, // absolute unique code 8EYQHG
    ...
]);

Changelog

Please see CHANGELOG for more information on what has changed recently.

Roadmap

  • [ ] Suffix option
  • [ ] Maybe created codes will be stored in a database table with a model and field name. So, it will be faster to generate a unique code.
  • [ ] More tests
  • [ ] More configurations
  • [ ] More coffee

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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

Comments