2016-01-07 18:33:37 -05:00
|
|
|
{
|
2016-11-21 17:08:17 -05:00
|
|
|
"name": "vimeo/psalm",
|
|
|
|
"description": "A static analysis tool for finding errors in PHP applications",
|
2016-01-07 18:33:37 -05:00
|
|
|
"keywords": ["php", "code", "inspection"],
|
|
|
|
"type": "library",
|
2016-11-21 17:08:17 -05:00
|
|
|
"license": "MIT",
|
2016-01-07 18:33:37 -05:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Matthew Brown"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2017-01-19 21:18:46 +01:00
|
|
|
"php": "^5.5 || ^7.0",
|
2017-02-10 20:46:38 -05:00
|
|
|
"nikic/PHP-Parser": "^3.0.4"
|
2016-01-07 18:33:37 -05:00
|
|
|
},
|
2016-07-26 15:12:44 -04:00
|
|
|
"bin": ["bin/psalm"],
|
2016-01-07 18:33:37 -05:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2016-07-25 18:37:44 -04:00
|
|
|
"Psalm\\": "src/Psalm"
|
2016-04-03 19:47:06 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2016-10-20 11:51:45 -04:00
|
|
|
"Psalm\\Tests\\": "tests"
|
2016-01-07 18:33:37 -05:00
|
|
|
}
|
2016-10-20 11:54:55 -04:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-01-19 21:18:46 +01:00
|
|
|
"phpunit/phpunit": "^5.7.4",
|
2016-12-23 23:50:57 +00:00
|
|
|
"squizlabs/php_codesniffer": "^2.7"
|
2016-10-20 11:54:55 -04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-12-06 19:41:52 -05:00
|
|
|
"psalm": "./bin/psalm",
|
2016-11-02 02:29:00 -04:00
|
|
|
"standards": "phpcs --standard=phpcs.xml",
|
2016-12-07 00:12:06 -05:00
|
|
|
"tests": "phpunit"
|
2016-03-07 13:26:41 -05:00
|
|
|
}
|
2016-01-07 18:33:37 -05:00
|
|
|
}
|