mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 12:24:49 +01:00
36 lines
789 B
JSON
36 lines
789 B
JSON
{
|
|
"name": "mattb/psalm",
|
|
"description": "A PHP code inspection utility written in PHP",
|
|
"keywords": ["php", "code", "inspection"],
|
|
"type": "library",
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Matthew Brown"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.4",
|
|
"nikic/PHP-Parser": "2.1.0"
|
|
},
|
|
"bin": ["bin/psalm"],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psalm\\": "src/Psalm"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Psalm\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.6"
|
|
},
|
|
"scripts": {
|
|
"psalm": "./bin/psalm --self-check",
|
|
"standards": "phpcs --standard=phpcs.xml",
|
|
"tests": "phpunit tests/"
|
|
}
|
|
}
|