1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/composer.json
2016-12-04 23:19:14 -05:00

36 lines
800 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 --self-check",
"standards": "phpcs --standard=phpcs.xml",
"tests": "phpunit tests/"
}
}