- Add declare(strict_types=1) to 17 PHP files missing it (13 Livewire modals, 1 route file, 1 migration, 1 test use case, TestCase) - Add composer test/lint scripts to composer.json for monorepo consistency - Fix phpunit.xml to discover tests in src/Search/Tests and src/Mod/Hub/Tests - Update CLAUDE.md commands section to document composer test/lint Co-Authored-By: Virgil <virgil@lethean.io>
38 lines
833 B
JSON
38 lines
833 B
JSON
{
|
|
"name": "lthn/php-admin",
|
|
"description": "Admin panel module for Core PHP framework",
|
|
"keywords": [
|
|
"laravel",
|
|
"admin",
|
|
"panel",
|
|
"dashboard"
|
|
],
|
|
"license": "EUPL-1.2",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"lthn/php": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Core\\Admin\\": "src/",
|
|
"Website\\Hub\\": "src/Website/Hub/",
|
|
"Core\\Service\\Admin\\": "Service/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Core\\Admin\\Boot"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/pest",
|
|
"lint": "vendor/bin/pint"
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"replace": {
|
|
"core/php-admin": "self.version"
|
|
}
|
|
}
|