-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 967 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
36
37
38
{
"name": "giacocorsiglia/stubs-generator",
"description": "Generate stubs from any PHP code for IDE completion and static analysis.",
"type": "library",
"license": "MIT",
"keywords": [
"IDE",
"static analysis"
],
"homepage": "https://github.com/GiacoCorsiglia/php-stubs-generator",
"authors": [
{
"name": "Giaco Corsiglia",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"StubsGenerator\\": "src"
}
},
"bin": [
"bin/generate-stubs"
],
"require": {
"php": ">=7.1",
"symfony/console": "^4.0",
"nikic/php-parser": "^3.1",
"symfony/finder": "^4.0",
"symfony/filesystem": "^4.0"
},
"require-dev": {
"vimeo/psalm": "^0.3.92",
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.10"
},
"minimum-stability": "stable"
}