https://github.com/usox/hack-uuid-generator
Generate RFC 4122 version 4 uuids
https://github.com/usox/hack-uuid-generator
hack hacklang hhvm uuid uuid-generator
Last synced: 6 months ago
JSON representation
Generate RFC 4122 version 4 uuids
- Host: GitHub
- URL: https://github.com/usox/hack-uuid-generator
- Owner: usox
- License: mit
- Created: 2017-04-23T06:59:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-21T11:15:55.000Z (over 6 years ago)
- Last Synced: 2025-02-08T05:44:41.828Z (8 months ago)
- Topics: hack, hacklang, hhvm, uuid, uuid-generator
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/usox/hack-uuid-generator)
Hack Uuid Generator
===================This library creates random version 4 uuids according to RFC 4122.
Sample
------```php
$uuid_generator = new \Usox\HackUuidGen\UuidGenerator();
$uuid = $uuid_generator->generate();
```