-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1014 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 1014 Bytes
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
36
37
{
"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"
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4|^8.0",
"ext-xdebug": "*",
"composer/xdebug-handler": "^3.0",
"symfony/console": "^5.4"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.13"
},
"autoload": {
"psr-4": {
"PHPWeaver\\": "src/PHPWeaver"
}
},
"autoload-dev": {
"psr-4": {
"PHPWeaver\\Test\\": "tests/PHPWeaver"
}
}
}