Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fetus-hina/uuid
A php library to generate UUID v1/3/4/5/6/7/8
https://github.com/fetus-hina/uuid
uuid uuid-generator
Last synced: about 1 month ago
JSON representation
A php library to generate UUID v1/3/4/5/6/7/8
- Host: GitHub
- URL: https://github.com/fetus-hina/uuid
- Owner: fetus-hina
- License: mit
- Created: 2016-03-27T11:12:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-12T20:47:35.000Z (6 months ago)
- Last Synced: 2024-09-17T01:43:33.410Z (2 months ago)
- Topics: uuid, uuid-generator
- Language: PHP
- Homepage:
- Size: 88.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
jp3cki/uuid
===========[![Latest Stable Version](https://poser.pugx.org/jp3cki/uuid/v)](//packagist.org/packages/jp3cki/uuid)
[![License](https://poser.pugx.org/jp3cki/uuid/license)](//packagist.org/packages/jp3cki/uuid)A simple UUID and ULID implementation.
UUIDv6, v7 and v8 are implemented based on the [draft](https://www.ietf.org/archive/id/draft-ietf-uuidrev-rfc4122bis-03.txt).Requirements
------------* PHP ≥ 8.1 (64 bit)
* Basic extensions
- PCRE (preg)
- HashInstall
-------```
$ composer.phar require jp3cki/uuid
```Usage
-----### Timestamp-based UUID (version 1, 6, 7)
```php