Complete Phase 1: MVC, DB migrations, Auth, RBAC, Security, and Views

This commit is contained in:
Hamza-Ayed
2026-06-05 00:56:41 +03:00
parent 7ffbc8bafa
commit bed7624ae9
51 changed files with 3295 additions and 0 deletions

22
composer.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "scoutiq/platform",
"description": "ScoutIQ - AI-powered Investor Intelligence Platform",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=8.4",
"vlucas/phpdotenv": "^5.6",
"predis/predis": "^2.2",
"firebase/php-jwt": "^6.10",
"psr/container": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}