Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vectorface/uuid
Simple UUID Generation Library
https://github.com/vectorface/uuid
Last synced: about 2 months ago
JSON representation
Simple UUID Generation Library
- Host: GitHub
- URL: https://github.com/vectorface/uuid
- Owner: Vectorface
- License: mit
- Created: 2019-06-27T13:25:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-02T17:04:43.000Z (over 5 years ago)
- Last Synced: 2024-11-05T10:38:42.669Z (3 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UUID
[![Build Status](https://travis-ci.org/Vectorface/uuid.svg?branch=master)](https://travis-ci.org/Vectorface/uuid)
[![Code Coverage](https://scrutinizer-ci.com/g/Vectorface/uuid/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/Vectorface/uuid/?branch=master)
[![Latest Stable Version](https://img.shields.io/packagist/v/vectorface/uuid.svg)](https://packagist.org/packages/vectorface/uuid)
[![License: MIT](https://img.shields.io/github/license/vectorface/uuid.svg)](https://opensource.org/licenses/MIT)An extremely simple UUID generation library with no dependencies, currently limited to UUID v4 generation.
## Usage
```php
echo \Vectorface\UUID\UUID::v4(); // Something like b1f26ddd-cd89-456f-ab4c-b02a6e920b80
```