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>
31 lines
582 B
JSON
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
|
|
}
|