mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
36 lines
787 B
JSON
36 lines
787 B
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": ">=5.5",
|
|
"nikic/PHP-Parser": ">=3.0.1"
|
|
},
|
|
"bin": ["bin/psalm"],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psalm\\": "src/Psalm"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Psalm\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": ">=4.1"
|
|
},
|
|
"scripts": {
|
|
"psalm": "./bin/psalm",
|
|
"standards": "phpcs --standard=phpcs.xml",
|
|
"tests": "phpunit tests/"
|
|
}
|
|
}
|