andytruong / uuid
Common tools for PHP
Installs: 31
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 2
pkg:composer/andytruong/uuid
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-10-07 08:00:34 UTC
README
PHP UUID generator wrapper, requires PHP >= 5.4, copied from Drupal 8 code.
Usage
<?php // Use inside your function $uuid = AndyTruong\Uuid\Uuid::getGenerator()->generate(); // Use inside your library class MyClass { public function myMethod(\AndyTruong\Uuid\UuidInterface $uuid_maker) { $uuid = $uuid_maker->generate(); } }