mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 18:11:52 -04:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "thecodingmachine/phpstan-safe-rule",
|
|
"description": "A PHPStan rule to detect safety issues. Must be used in conjunction with thecodingmachine/safe",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "David Négrier",
|
|
"email": "d.negrier@thecodingmachine.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1",
|
|
"phpstan/phpstan": "^0.10 | ^0.11",
|
|
"thecodingmachine/safe": "^0.1.11"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.5.2",
|
|
"php-coveralls/php-coveralls": "^2.1",
|
|
"squizlabs/php_codesniffer": "^3.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"TheCodingMachine\\Safe\\PHPStan\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"TheCodingMachine\\Safe\\PHPStan\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
|
|
"cs-fix": "phpcbf",
|
|
"cs-check": "phpcs"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.1-dev"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|