schneespur/release/schneespur-1.0.2/vendor/thecodingmachine/safe/generator/composer.json
Michael 7288b93500 Release v1.0.2: diagnostic infrastructure core
Add neutral diagnostic framework for future reporting modules:
- DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer
- Laravel exception hook in bootstrap/app.php
- Module permission declarations (requires_permissions in module.json)
- Core diagnostic report points (module boot/install/update failures)
- Module documentation update (moduldoku.md)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-18 16:54:11 +00:00

37 lines
965 B
JSON

{
"name": "thecodingmachine/safe-generator",
"description": "Generated the files for thecodingmachine/safe",
"version": "0.0.0",
"autoload": {
"psr-4": {
"Safe\\": "src/"
}
},
"require": {
"php": "^8.3",
"ext-simplexml": "*",
"ext-json": "*",
"phpstan/phpstan": "^2.1",
"symfony/console": "^7.2",
"symfony/process": "^7.2",
"symfony/finder": "^7.2",
"symfony/filesystem": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"squizlabs/php_codesniffer": "^3.2",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"scripts": {
"lint": "parallel-lint config/ src/ tests/",
"test": "XDEBUG_MODE=coverage phpunit",
"phpstan": "phpstan analyse",
"cs-fix": "phpcbf",
"cs-check": "phpcs"
},
"config": {
"platform": {
"php": "8.3"
}
}
}