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: 6 months ago
JSON representation

Generate RFC 4122 version 4 uuids

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();
```