justbetter / laravel-unique-values
Package to generate unique values with support for concurrency utilizing cache locking
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 20
Watchers: 4
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^8.3
- laravel/framework: ^11.0|^12.0
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.20
- orchestra/testbench: ^9.0
- pestphp/pest: ^3.7
- phpstan/phpstan-mockery: ^2.0
- phpunit/phpunit: ^11.5
This package is not auto-updated.
Last update: 2025-03-29 11:41:28 UTC
README
Package to generate unique values
This package generates persistent unique values with support for concurrency utilizing scoped cache locking. It stores generated unique values in the database.
Generated values are unique per scope and can be generated using a callback method. This package only supports strings.
Features
- Generate unique values
- Support for concurrency
- Customizable generator
- Maximum attempts
- Support for subjects
Installation
You can install the package via composer:
composer require justbetter/laravel-unique-values
Usage
use JustBetter\UniqueValues\Support\UniqueValue; $uniqueValue = UniqueValue::make() ->scope('unique-scope') ->generator(function (int $attempt): string { return match ($attempt) { 0 => 'unique-value', default => 'unique-value-'.$attempt, }; })->generate();
Output after first run: unique-value
.
Output after second run: unique-value-1
.
Output after third run: unique-value-2
.
Maximum attempts
You can configure the maximum attempts, this is three by default. If the maximum attempts are reached an exception is thrown.
use JustBetter\UniqueValues\Support\UniqueValue; $uniqueValue = UniqueValue::make() ->scope('unique-scope') ->attempts(2) ->generator(function (int $attempt): string { return match ($attempt) { 0 => 'unique-value', default => 'unique-value-'.$attempt, }; })->generate();
Subject
You can add a subject to retrieve a previously generated value for the subject. Optionally you can add an override flag to run the generation again for the subject.
use JustBetter\UniqueValues\Support\UniqueValue; $uniqueValue = UniqueValue::make() ->scope('unique-scope') ->subject('subject') ->generator(function (int $attempt): string { return match ($attempt) { 0 => 'unique-value', default => 'unique-value-'.$attempt, }; })->generate();
First run will output: unique-value
.
Second run will output: unique-value
.
Only one unique value will be stored in the database.
Quality
To ensure the quality of this package, run the following command:
composer quality
This will execute three tasks:
- Makes sure all tests are passed
- Checks for any issues using static code analysis
- Checks if the code is correctly formatted
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.