-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
35 lines (35 loc) · 1000 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "troelskn/phpweaver",
"description": "A tool for analysing parameter types in PHP code, using a combination of static and runtime analysis",
"type": "project",
"license": "MIT",
"keywords": ["phpdoc", "phpDocumentor", "documentation", "analyzer", "generator", "docblock"],
"bin": [
"bin/phpweaver"
],
"require": {
"php": "^7.1",
"ext-xdebug": "*",
"composer/xdebug-handler": "^1.0",
"symfony/console": "^3.4"
},
"require-dev": {
"codacy/coverage": "^1.0",
"php-coveralls/php-coveralls": "^2.0",
"phpstan/phpstan": "^0.12.11",
"phpstan/phpstan-phpunit": "^0.12.6",
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^3.9",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"PHPWeaver\\": "src/PHPWeaver"
}
},
"autoload-dev": {
"psr-4": {
"PHPWeaver\\Test\\": "tests/PHPWeaver"
}
}
}