mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "vimeo/psalm",
|
|
"description": "A static analysis tool for finding errors in PHP applications",
|
|
"keywords": ["php", "code", "inspection"],
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Matthew Brown"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.0",
|
|
"nikic/PHP-Parser": "^4.0",
|
|
"openlss/lib-array2xml": "^0.0.10||^0.5.1",
|
|
"muglug/package-versions-56": "1.2.4",
|
|
"php-cs-fixer/diff": "^1.2",
|
|
"composer/xdebug-handler": "^1.1"
|
|
},
|
|
"bin": ["psalm", "psalter"],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psalm\\": "src/Psalm"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Psalm\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.0 || ^7.0",
|
|
"squizlabs/php_codesniffer": "^3.0",
|
|
"php-coveralls/php-coveralls": "^2.0",
|
|
"bamarni/composer-bin-plugin": "^1.2"
|
|
},
|
|
"suggest": {
|
|
"ext-igbinary": "^2.0.5"
|
|
},
|
|
"scripts": {
|
|
"psalm": "./psalm --find-dead-code",
|
|
"standards": "phpcs",
|
|
"tests": [
|
|
"phpcs",
|
|
"phpunit"
|
|
],
|
|
"all-tests": [
|
|
"phpcs",
|
|
"./psalm --find-dead-code",
|
|
"phpunit"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.x-dev",
|
|
"dev-1.x": "1.x-dev"
|
|
}
|
|
},
|
|
"provide": {
|
|
"psalm/psalm": "self.version"
|
|
}
|
|
}
|