mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
f7c309d8f6
Current definition of dependencies would result in **any** version being installed that is greater than the one specified. This is problematic since new major releases imply breaking changes and nothing ensures that psalm will be compatible with those updated dependencies. Using an operator that instructs Composer to ensure that this does not happen is therefore inalienable.
37 lines
832 B
JSON
37 lines
832 B
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": "^5.5 || ^7.0",
|
|
"nikic/PHP-Parser": "^3.0.2"
|
|
},
|
|
"bin": ["bin/psalm"],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psalm\\": "src/Psalm"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Psalm\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.7.4",
|
|
"squizlabs/php_codesniffer": "^2.7"
|
|
},
|
|
"scripts": {
|
|
"psalm": "./bin/psalm",
|
|
"standards": "phpcs --standard=phpcs.xml",
|
|
"tests": "phpunit"
|
|
}
|
|
}
|