mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
a581b4c443
Fixes #1739
88 lines
2.3 KiB
JSON
88 lines
2.3 KiB
JSON
{
|
|
"name": "vimeo/psalm",
|
|
"description": "A static analysis tool for finding errors in PHP applications",
|
|
"keywords": ["php", "code", "inspection"],
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Matthew Brown"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1",
|
|
"nikic/php-parser": "^4.0.2 || ^4.1",
|
|
"openlss/lib-array2xml": "^0.0.10||^0.5.1",
|
|
"ocramius/package-versions": "^1.2",
|
|
"composer/xdebug-handler": "^1.1",
|
|
"felixfbecker/language-server-protocol": "^1.2",
|
|
"felixfbecker/advanced-json-rpc": "^3.0.3",
|
|
"netresearch/jsonmapper": "^1.0",
|
|
"webmozart/glob": "^4.1",
|
|
"webmozart/path-util": "^2.3",
|
|
"symfony/console": "^3.3||^4.0",
|
|
"amphp/amp": "^2.1",
|
|
"amphp/byte-stream": "^1.5",
|
|
"sebastian/diff": "^3.0"
|
|
},
|
|
"bin": ["psalm", "psalter", "psalm-language-server", "psalm-plugin"],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psalm\\Plugin\\": "src/Psalm/Plugin",
|
|
"Psalm\\": "src/Psalm"
|
|
},
|
|
"files": [
|
|
"src/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Psalm\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.5 || ^8.0",
|
|
"squizlabs/php_codesniffer": "3.4.0",
|
|
"bamarni/composer-bin-plugin": "^1.2",
|
|
"psalm/plugin-phpunit": "^0.6",
|
|
"phpmyadmin/sql-parser": "^5.0"
|
|
},
|
|
"suggest": {
|
|
"ext-igbinary": "^2.0.5"
|
|
},
|
|
"scripts": {
|
|
"psalm": "./psalm --find-dead-code",
|
|
"standards": "phpcs",
|
|
"tests": [
|
|
"phpcs",
|
|
"phpunit"
|
|
],
|
|
"all-tests": [
|
|
"phpcs",
|
|
"./psalm --find-dead-code",
|
|
"phpunit"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.x-dev",
|
|
"dev-2.x": "2.x-dev",
|
|
"dev-1.x": "1.x-dev"
|
|
}
|
|
},
|
|
"provide": {
|
|
"psalm/psalm": "self.version"
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "examples/plugins/composer-based/echo-checker"
|
|
}
|
|
]
|
|
}
|