-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 821 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 821 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
{
"name": "feolius/hell2shape",
"description": "Generate PHPStan type annotations from var_dump output",
"keywords": ["phpstan", "var_dump", "type-annotations", "static-analysis"],
"license": "MIT",
"authors": [
{
"name": "Ivan Strygin",
"email": "feolius@gmail.com"
}
],
"bin": ["bin/hell2shape"],
"require": {
"php": "^8.3",
"symfony/console": "^5.1|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"symplify/easy-coding-standard": "^13.0",
"phpunit/phpunit": "^12.4"
},
"autoload": {
"psr-4": {
"Feolius\\Hell2Shape\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Feolius\\Hell2Shape\\Tests\\": "tests/"
}
}
}