Initial commit: Uruk Prize Platform architecture, backend core, mobile app, gateway caller & deployment pipeline

This commit is contained in:
Hamza-Ayed
2026-09-18 17:12:05 +03:00
commit 879dd36f1b
1149 changed files with 97122 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "uruk/prize-backend",
"description": "Uruk International Prize Platform - Pure PHP Core Engine",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Hamza Ayed",
"role": "Founding Tech Architect"
}
],
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-openssl": "*",
"ext-json": "*",
"vlucas/phpdotenv": "^5.6",
"guzzlehttp/guzzle": "^7.8"
},
"autoload": {
"psr-4": {
"Core\\": "core/",
"App\\": "app/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}