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

27 lines
581 B
JSON
Raw Normal View History

2016-01-08 00:33:37 +01:00
{
"name": "mattb/php-codeinspector",
"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 17:53:54 +02:00
"nikic/PHP-Parser": "2.1.0"
2016-01-08 00:33:37 +01:00
},
"autoload": {
"psr-4": {
2016-04-04 01:49:32 +02:00
"CodeInspector\\": "src/CodeInspector"
2016-04-04 01:47:06 +02:00
}
},
"autoload-dev": {
"psr-4": {
"CodeInspector\\Tests": "tests"
2016-01-08 00:33:37 +01:00
}
2016-03-07 19:26:41 +01:00
}
2016-01-08 00:33:37 +01:00
}