feat: initial dashboard-ticketing scaffold

This commit is contained in:
Joel Wedemire
2026-04-08 14:17:26 -07:00
parent 1448eb7cf4
commit 81d0d54f50
13 changed files with 980 additions and 0 deletions

23
composer.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "dashboard/ticketing",
"description": "Ticketing / help-desk snap-in for the Dashboard platform",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Dashboard\\Ticketing\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dashboard\\Ticketing\\TicketingServiceProvider"
]
}
},
"require": {
"php": "^8.2",
"illuminate/support": "^11.0|^12.0|^13.0",
"inertiajs/inertia-laravel": "^1.0|^2.0"
}
}