mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-15 00:56:59 +02:00
9 lines
No EOL
157 B
PHP
9 lines
No EOL
157 B
PHP
<?php
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use Ramsey\Uuid\Uuid;
|
|
|
|
$uniqueIdentifier = Uuid::uuid4()->toString();
|
|
|
|
echo $uniqueIdentifier . PHP_EOL; |