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-04-26 20:53:39 +02:00
|
|
|
"php": "^5.6 || ^7.0",
|
2017-02-18 17:49:05 -05:00
|
|
|
"nikic/PHP-Parser": "^3.0.4",
|
2017-09-08 17:18:48 +02:00
|
|
|
"composer/composer": "^1.3",
|
2017-09-13 22:07:44 -04:00
|
|
|
"openlss/lib-array2xml": "^0.0.10||^0.5.1"
|
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-06-18 11:39:06 -07:00
|
|
|
"phpunit/phpunit": "^5.7.4",
|
|
|
|
"friendsofphp/php-cs-fixer": "^2.3",
|
|
|
|
"squizlabs/php_codesniffer": "^3.0"
|
2016-10-20 11:54:55 -04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-12-06 19:41:52 -05:00
|
|
|
"psalm": "./bin/psalm",
|
2017-05-26 23:26:14 +01:00
|
|
|
"standards": "php ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --allow-risky=yes",
|
|
|
|
"tests": [
|
|
|
|
"php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
|
2017-06-26 05:22:05 +01:00
|
|
|
"php ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --allow-risky=yes --dry-run .php_cs.dist",
|
2017-05-26 23:26:14 +01:00
|
|
|
"php ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --allow-risky=yes --dry-run",
|
|
|
|
"phpunit"
|
|
|
|
]
|
2016-03-07 13:26:41 -05:00
|
|
|
}
|
2016-01-07 18:33:37 -05:00
|
|
|
}
|