Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
{
|
2026-01-26 21:21:53 +00:00
|
|
|
"name": "host-uk/core",
|
|
|
|
|
"description": "Modular monolith framework for Laravel - event-driven architecture with lazy module loading",
|
|
|
|
|
"keywords": ["laravel", "modular", "monolith", "framework", "events", "modules"],
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
"license": "EUPL-1.2",
|
2026-01-26 21:21:53 +00:00
|
|
|
"authors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Host UK",
|
|
|
|
|
"email": "support@host.uk.com"
|
|
|
|
|
}
|
|
|
|
|
],
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
"require": {
|
|
|
|
|
"php": "^8.2",
|
2026-01-26 21:21:53 +00:00
|
|
|
"laravel/framework": "^11.0|^12.0",
|
|
|
|
|
"laravel/pennant": "^1.0",
|
|
|
|
|
"livewire/livewire": "^3.0|^4.0"
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
},
|
|
|
|
|
"require-dev": {
|
2026-01-21 14:11:45 +00:00
|
|
|
"fakerphp/faker": "^1.23",
|
|
|
|
|
"laravel/pint": "^1.18",
|
|
|
|
|
"mockery/mockery": "^1.6",
|
|
|
|
|
"nunomaduro/collision": "^8.6",
|
2026-01-26 21:21:53 +00:00
|
|
|
"orchestra/testbench": "^9.0|^10.0",
|
|
|
|
|
"phpunit/phpunit": "^11.5",
|
2026-01-26 16:59:47 +00:00
|
|
|
"spatie/laravel-activitylog": "^4.8"
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
},
|
2026-01-26 21:21:53 +00:00
|
|
|
"suggest": {
|
|
|
|
|
"spatie/laravel-activitylog": "Required for activity logging features (^4.0)"
|
|
|
|
|
},
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
2026-01-26 21:21:53 +00:00
|
|
|
"Core\\": "src/Core/",
|
|
|
|
|
"Core\\Website\\": "src/Website/",
|
|
|
|
|
"Core\\Mod\\": "src/Mod/",
|
|
|
|
|
"Core\\Plug\\": "src/Plug/"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"src/Core/Media/Thumbnail/helpers.php"
|
|
|
|
|
]
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
2026-01-26 21:21:53 +00:00
|
|
|
"Core\\Tests\\": "tests/",
|
|
|
|
|
"Mod\\": "tests/Fixtures/Mod/",
|
|
|
|
|
"Plug\\": "tests/Fixtures/Plug/",
|
|
|
|
|
"Website\\": "tests/Fixtures/Website/"
|
2026-01-21 14:11:45 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2026-01-26 21:21:53 +00:00
|
|
|
"test": "vendor/bin/phpunit",
|
|
|
|
|
"pint": "vendor/bin/pint"
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"laravel": {
|
2026-01-26 21:21:53 +00:00
|
|
|
"providers": [
|
|
|
|
|
"Core\\LifecycleEventProvider",
|
|
|
|
|
"Core\\Lang\\LangServiceProvider",
|
|
|
|
|
"Core\\Bouncer\\Gate\\Boot"
|
|
|
|
|
]
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"config": {
|
2026-01-21 14:11:45 +00:00
|
|
|
"optimize-autoloader": true,
|
|
|
|
|
"preferred-install": "dist",
|
|
|
|
|
"sort-packages": true,
|
|
|
|
|
"allow-plugins": {
|
|
|
|
|
"php-http/discovery": true
|
|
|
|
|
}
|
Initial release: Core PHP modular monolith framework
- Event-driven architecture with lazy module loading
- ModuleScanner, ModuleRegistry, LazyModuleListener for module discovery
- 7 lifecycle events: Web, Admin, API, Client, Console, MCP, FrameworkBooted
- AdminMenuProvider and ServiceDefinition contracts
- Artisan commands: make:mod, make:website, make:plug
- Module stubs for rapid scaffolding
- Comprehensive test suite with Orchestra Testbench
- GitHub Actions CI for PHP 8.2-8.4 / Laravel 11-12
- EUPL-1.2 license
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 17:02:28 +00:00
|
|
|
},
|
|
|
|
|
"minimum-stability": "stable",
|
|
|
|
|
"prefer-stable": true
|
|
|
|
|
}
|