1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00
psalm/composer.json

37 lines
827 B
JSON
Raw Normal View History

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": {
2016-12-04 23:19:14 -05:00
"php": ">=5.5",
"nikic/PHP-Parser": ">=3.0.2"
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": {
"Psalm\\Tests\\": "tests"
2016-01-07 18:33:37 -05:00
}
},
"require-dev": {
2016-12-23 23:50:57 +00:00
"phpunit/phpunit": ">=5.7.4",
"squizlabs/php_codesniffer": "^2.7"
},
"scripts": {
2016-12-06 19:41:52 -05:00
"psalm": "./bin/psalm",
2016-11-02 02:29:00 -04:00
"standards": "phpcs --standard=phpcs.xml",
2016-12-07 00:12:06 -05:00
"tests": "phpunit"
2016-03-07 13:26:41 -05:00
}
2016-01-07 18:33:37 -05:00
}