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": {
|
2016-12-05 05:19:14 +01:00
|
|
|
"php": ">=5.5",
|
2016-12-04 02:04:42 +01:00
|
|
|
"nikic/PHP-Parser": ">=3.0.1"
|
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": {
|
2016-11-22 04:27:33 +01:00
|
|
|
"phpunit/phpunit": ">=4.1"
|
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
|
|
|
}
|