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