php-developer/composer.json
Snider 6adcd6ec0b
Some checks failed
CI / PHP 8.3 (pull_request) Failing after 2s
CI / PHP 8.4 (pull_request) Failing after 3s
fix(dx): add strict_types, composer scripts, and Pint config
- Add declare(strict_types=1) to all 12 PHP files missing it
- Add composer test/lint scripts to composer.json
- Add laravel/pint to require-dev for PSR-12 compliance
- Add pint.json with Laravel preset
- Update CLAUDE.md commands to match monorepo conventions

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-17 09:08:38 +00:00

58 lines
1.3 KiB
JSON

{
"name": "lthn/php-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",
"lthn/php": "*",
"core/php-admin": "@dev"
},
"require-dev": {
"laravel/pint": "^1.0",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"Core\\Developer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": "pint"
},
"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,
"replace": {
"core/php-developer": "self.version"
}
}