- Remove old incremental migrations (now consolidated into create_* files) - Clean up cached view files - Various fixes across core-api, core-mcp, core-php packages Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "host-uk/core",
|
|
"description": "Modular monolith framework for Laravel - event-driven architecture with lazy module loading",
|
|
"keywords": ["laravel", "modular", "monolith", "framework", "events", "modules"],
|
|
"license": "EUPL-1.2",
|
|
"authors": [
|
|
{
|
|
"name": "Host UK",
|
|
"email": "dev@host.uk.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"laravel/framework": "^11.0|^12.0",
|
|
"laravel/pennant": "^1.0",
|
|
"livewire/livewire": "^3.0|^4.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Core\\": "src/Core/",
|
|
"Core\\Website\\": "src/Website/",
|
|
"Core\\Mod\\": "src/Mod/",
|
|
"Core\\Plug\\": "src/Plug/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Core\\Tests\\": "tests/",
|
|
"Mod\\": "tests/Fixtures/Mod/",
|
|
"Plug\\": "tests/Fixtures/Plug/",
|
|
"Website\\": "tests/Fixtures/Website/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Core\\LifecycleEventProvider",
|
|
"Core\\Lang\\LangServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|