php-admin/composer.json
Snider 17bb2c8dbf Add Hub service layer and admin navigation restructure
Introduce Core\Service\Admin\Boot as the service definition for the
Hub admin panel. Update changelog to document TASK-005 Hades admin
navigation audit including new menu structure and AdminMenuProvider
interface.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-27 16:12:01 +00:00

31 lines
582 B
JSON

{
"name": "host-uk/core-admin",
"description": "Admin panel module for Core PHP framework",
"keywords": [
"laravel",
"admin",
"panel",
"dashboard"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"host-uk/core": "@dev"
},
"autoload": {
"psr-4": {
"Core\\Admin\\": "src/",
"Website\\Hub\\": "src/Website/Hub/",
"Core\\Service\\Admin\\": "Service/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Admin\\Boot"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}