1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/composer.json

38 lines
869 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.5 || ^7.0",
2017-02-18 23:49:05 +01:00
"nikic/PHP-Parser": "^3.0.4",
"composer/composer": "^1.3"
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": {
"phpunit/phpunit": "^5.7.4",
2016-12-24 00:50:57 +01:00
"squizlabs/php_codesniffer": "^2.7"
},
"scripts": {
2016-12-07 01:41:52 +01:00
"psalm": "./bin/psalm",
2016-11-02 07:29:00 +01:00
"standards": "phpcs --standard=phpcs.xml",
2016-12-07 06:12:06 +01:00
"tests": "phpunit"
2016-03-07 19:26:41 +01:00
}
2016-01-08 00:33:37 +01:00
}