This commit is contained in:
lubiana 2025-06-27 15:04:56 +02:00
commit 2c36a7665e
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
7 changed files with 597 additions and 0 deletions

16
composer.json Normal file
View file

@ -0,0 +1,16 @@
{
"name": "lubiana/uuid-webservice",
"description": "A simple PHP webservice for generating UUIDs and ULIDs.",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"php": ">=8.4",
"symfony/uid": "^7.0",
"symfony/http-foundation": "^7.3"
}
}