uzdevid/php-uuid

UUID Generator

Maintainers

Package info

github.com/uzdevid/php-uuid

pkg:composer/uzdevid/php-uuid

Statistics

Installs: 15

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.0 2022-12-24 06:48 UTC

This package is auto-updated.

Last update: 2026-02-24 14:04:59 UTC


README

UUID Generator

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist uzdevid/php-uuid "1.0"
composer require --prefer-dist uzdevid/php-uuid "1.0"

or add

"uzdevid/php-uuid": "1.0"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?php $uuid = \uzdevid\uuid\UUID::generate(); ?>