Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 19 days 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 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-21T11:15:55.000Z (almost 6 years ago)
- Last Synced: 2024-10-28T00:22:27.052Z (2 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
[![Build Status](https://travis-ci.org/usox/hack-uuid-generator.svg?branch=master)](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();
```