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