mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
Enhancement: Normalize composer.json (#2599)
This commit is contained in:
parent
224d6ebf2f
commit
3cfc2f87f9
126
composer.json
126
composer.json
@ -1,8 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "vimeo/psalm",
|
"name": "vimeo/psalm",
|
||||||
"description": "A static analysis tool for finding errors in PHP applications",
|
|
||||||
"keywords": ["php", "code", "inspection"],
|
|
||||||
"type": "library",
|
"type": "library",
|
||||||
|
"description": "A static analysis tool for finding errors in PHP applications",
|
||||||
|
"keywords": [
|
||||||
|
"php",
|
||||||
|
"code",
|
||||||
|
"inspection"
|
||||||
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@ -11,26 +15,53 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^7.1.3",
|
"php": "^7.1.3",
|
||||||
"ext-dom": "*",
|
|
||||||
"ext-SimpleXML": "*",
|
"ext-SimpleXML": "*",
|
||||||
|
"ext-dom": "*",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"ext-libxml": "*",
|
"ext-libxml": "*",
|
||||||
"ext-tokenizer": "*",
|
"ext-tokenizer": "*",
|
||||||
"nikic/php-parser": "^4.3",
|
|
||||||
"openlss/lib-array2xml": "^1.0",
|
|
||||||
"ocramius/package-versions": "^1.2",
|
|
||||||
"composer/xdebug-handler": "^1.1",
|
|
||||||
"felixfbecker/language-server-protocol": "^1.4",
|
|
||||||
"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||^5.0",
|
|
||||||
"amphp/amp": "^2.1",
|
"amphp/amp": "^2.1",
|
||||||
"amphp/byte-stream": "^1.5",
|
"amphp/byte-stream": "^1.5",
|
||||||
"sebastian/diff": "^3.0"
|
"composer/xdebug-handler": "^1.1",
|
||||||
|
"felixfbecker/advanced-json-rpc": "^3.0.3",
|
||||||
|
"felixfbecker/language-server-protocol": "^1.4",
|
||||||
|
"netresearch/jsonmapper": "^1.0",
|
||||||
|
"nikic/php-parser": "^4.3",
|
||||||
|
"ocramius/package-versions": "^1.2",
|
||||||
|
"openlss/lib-array2xml": "^1.0",
|
||||||
|
"sebastian/diff": "^3.0",
|
||||||
|
"symfony/console": "^3.3 || ^4.0 || ^5.0",
|
||||||
|
"webmozart/glob": "^4.1",
|
||||||
|
"webmozart/path-util": "^2.3"
|
||||||
|
},
|
||||||
|
"provide": {
|
||||||
|
"psalm/psalm": "self.version"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"ext-curl": "*",
|
||||||
|
"bamarni/composer-bin-plugin": "^1.2",
|
||||||
|
"friendsofphp/php-cs-fixer": "^2.15",
|
||||||
|
"phpmyadmin/sql-parser": "^5.0",
|
||||||
|
"phpspec/prophecy": ">=1.9.0",
|
||||||
|
"phpunit/phpunit": "^7.5 || ^8.0",
|
||||||
|
"psalm/plugin-phpunit": "^0.6",
|
||||||
|
"slevomat/coding-standard": "^5.0",
|
||||||
|
"squizlabs/php_codesniffer": "^3.5",
|
||||||
|
"symfony/process": "^4.3"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"ext-igbinary": "^2.0.5"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"optimize-autoloader": true
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "3.x-dev",
|
||||||
|
"dev-2.x": "2.x-dev",
|
||||||
|
"dev-1.x": "1.x-dev"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"bin": ["psalm", "psalter", "psalm-language-server", "psalm-plugin", "psalm-refactor"],
|
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"Psalm\\Plugin\\": "src/Psalm/Plugin",
|
"Psalm\\Plugin\\": "src/Psalm/Plugin",
|
||||||
@ -46,53 +77,32 @@
|
|||||||
"Psalm\\Tests\\": "tests"
|
"Psalm\\Tests\\": "tests"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"config": {
|
|
||||||
"optimize-autoloader": true
|
|
||||||
},
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"prefer-stable": true,
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^7.5 || ^8.0",
|
|
||||||
"phpspec/prophecy": ">=1.9.0",
|
|
||||||
"squizlabs/php_codesniffer": "^3.5",
|
|
||||||
"bamarni/composer-bin-plugin": "^1.2",
|
|
||||||
"psalm/plugin-phpunit": "^0.6",
|
|
||||||
"phpmyadmin/sql-parser": "^5.0",
|
|
||||||
"symfony/process": "^4.3",
|
|
||||||
"slevomat/coding-standard": "^5.0",
|
|
||||||
"friendsofphp/php-cs-fixer": "^2.15",
|
|
||||||
"ext-curl": "*"
|
|
||||||
},
|
|
||||||
"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": [
|
"repositories": [
|
||||||
{
|
{
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"url": "examples/plugins/composer-based/echo-checker"
|
"url": "examples/plugins/composer-based/echo-checker"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"minimum-stability": "dev",
|
||||||
|
"prefer-stable": true,
|
||||||
|
"bin": [
|
||||||
|
"psalm",
|
||||||
|
"psalm-language-server",
|
||||||
|
"psalm-plugin",
|
||||||
|
"psalm-refactor",
|
||||||
|
"psalter"
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"all-tests": [
|
||||||
|
"phpcs",
|
||||||
|
"./psalm --find-dead-code",
|
||||||
|
"phpunit"
|
||||||
|
],
|
||||||
|
"psalm": "./psalm --find-dead-code",
|
||||||
|
"standards": "phpcs",
|
||||||
|
"tests": [
|
||||||
|
"phpcs",
|
||||||
|
"phpunit"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user