laravel-uuid icon indicating copy to clipboard operation
laravel-uuid copied to clipboard

Laravel package to generate and to validate a UUID according to the RFC 4122 standard. Only support for version 1, 3, 4 and 5 UUID are built-in.

Results 10 laravel-uuid issues
Sort by recently updated
recently updated
newest added

First of all, thanks for the great tool. Could you please tell me, is it possible to create time ordered UUID, such as Laravel's [Str::orderedUuid()](https://laravel.com/docs/9.x/helpers#method-str-ordered-uuid) ?

In the readme the minimum php version listed for 4.* is 7.3 but in the composer.json it has 7.0. dependabot is raising a pr for this when the project php...

Validate-function returns true with parameter value "20191015_100_051". The result is the same with any given parameter of length 16. Tested with version 3 on Laravel 5.5.

[RuntimeException] Failed to execute git clone --mirror -- 'https://ghp_IkedhLEZ6hksAqjZHfBmRl H7jsaJLp21V3Zz:[email protected]/kenarkose/Ownable.git' '/home/dev/. cache/composer/vcs/https---github.com-kenarkose-Ownable.git/'

I've been troubleshooting parts our our application and came across uuid's that I believe do not have their RFC4122 version information. Uuid::generate( 4 )->string Example: 14326a6c-184f-11ea-9e97-06aad2cae86c A version 4 UUID...

I have a high load on one of my apps right now. I've never seen this error: `Integrity constraint violation: 1062 Duplicate entry '' for key 'PRIMARY'` Should I be...

Hi all. I have encountered error after adding ```UuidServiceProvider::class``` in providers and ```Uuid::class``` in alias of ```config/app.php```, and running config cache with ```php artisan config:cache```. The error is as below:...

I get strange results when using `Uuid::import` on a uuid returned from an SQL Server `uniqueidentifier` filled by the SQL default `newsequentialid()` like this: ``` >>> $uid = Webpatser\Uuid\Uuid::import(App\Deployment::first()->id) =>...

It seems counter-intuitive that it is not possible to generate a specific version of a UUID using the `Uuid::VERSION_*` constants e.g. `Uuid::generate(Uuid::VERSION_4);`. As this library currently supports PHP >= 7.0.0...

Error in logs: ``` PHP Deprecated: Creation of dynamic property Webpatser\Uuid\Uuid::$bytes is deprecated in [filtered]/vendor/webpatser/laravel-uuid/src/Webpatser/Uuid/Uuid.php on line 127 PHP Deprecated: Creation of dynamic property Webpatser\Uuid\Uuid::$string is deprecated in [filtered]/vendor/webpatser/laravel-uuid/src/Webpatser/Uuid/Uuid.php on...