-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
37 lines (37 loc) · 945 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
{
"name": "php-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/php-stubs/generator",
"authors": [
{
"name": "Giaco Corsiglia",
"email": "GiacoCorsiglia@gmail.com"
}
],
"autoload": {
"psr-4": {
"StubsGenerator\\": "src/"
}
},
"bin": [
"bin/generate-stubs"
],
"require": {
"php": "^7.3 || ^8.0",
"nikic/php-parser": "^4.10",
"symfony/console": "^5.1 || ^6.0",
"symfony/filesystem": "^5.0 || ^6.0",
"symfony/finder": "^5.0 || ^6.0"
},
"require-dev": {
"vimeo/psalm": "^4.1",
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^2.16 || ^3.12"
}
}