-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.37 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.37 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"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.18 || ^5.5",
"symfony/console": "^5.1 || ^6.0 || ^7.0",
"symfony/filesystem": "^5.0 || ^6.0 || ^7.0",
"symfony/finder": "^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.4.0 || ^3.12",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.0 || ^2.0",
"phpstan/phpstan-symfony": "^1.0 || ^2.0",
"phpunit/phpunit": "^9.4"
},
"scripts": {
"test": "phpunit --verbose",
"cs:check": "php-cs-fixer check",
"cs:fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}