php-developer/composer.json
Snider 518305142e refactor: relocate module from app/Mod/Developer to src/
Move module to standard package structure with namespace change
from Mod\Developer to Core\Developer. Updates composer.json
autoload configuration accordingly.

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

44 lines
1.1 KiB
JSON

{
"name": "host-uk/core-developer",
"type": "library",
"description": "Developer tools module for Core PHP Framework - route inspector, database explorer, logs viewer",
"keywords": ["laravel", "core-php", "developer-tools", "debugging", "route-inspector"],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"laravel/framework": "^11.0|^12.0",
"livewire/livewire": "^3.0|^4.0",
"host-uk/core": "@dev",
"host-uk/core-admin": "@dev"
},
"require-dev": {
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"Core\\Developer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Developer\\Boot"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}