1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/composer.json

36 lines
800 B
JSON
Raw Normal View History

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": {
"php": ">=5.4",
2016-11-22 04:27:33 +01:00
"nikic/PHP-Parser": ">=2.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": {
"Psalm\\Tests\\": "tests"
2016-01-08 00:33:37 +01:00
}
},
"require-dev": {
2016-11-22 04:27:33 +01:00
"phpunit/phpunit": ">=4.1"
},
"scripts": {
"psalm": "./bin/psalm --self-check",
2016-11-02 07:29:00 +01:00
"standards": "phpcs --standard=phpcs.xml",
"tests": "phpunit tests/"
2016-03-07 19:26:41 +01:00
}
2016-01-08 00:33:37 +01:00
}