Initial commit of the Asset Management System, including project structure, Docker configuration, database migrations, and core application files. Added user authentication, asset management features, and basic UI components.

This commit is contained in:
2025-08-22 21:41:02 +02:00
parent b43a98f0ec
commit 677f70a19c
52 changed files with 5186 additions and 2 deletions

26
composer.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "inventory/asset-management",
"description": "Professional Asset Management System",
"type": "project",
"require": {
"php": ">=8.2",
"dompdf/dompdf": "^2.0",
"picqer/php-barcode-generator": "^2.2",
"phpoffice/phpspreadsheet": "^1.29",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helpers/functions.php"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}