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

34 lines
693 B
JSON
Raw Normal View History

2016-01-07 18:33:37 -05:00
{
2016-07-18 18:06:20 -04:00
"name": "mattb/psalm",
2016-01-07 18:33:37 -05:00
"description": "A PHP code inspection utility written in PHP",
"keywords": ["php", "code", "inspection"],
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Matthew Brown"
}
],
"require": {
"php": ">=5.4",
2016-04-30 11:53:54 -04:00
"nikic/PHP-Parser": "2.1.0"
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": {
"phpunit/phpunit": "^5.6"
},
"scripts": {
"tests": "phpunit tests/"
2016-03-07 13:26:41 -05:00
}
2016-01-07 18:33:37 -05:00
}