-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
64 lines (54 loc) · 1.34 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "setasign/php-stub-generator",
"description": "A tool to generate stub-files for your php classes.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Maximilian Kresse",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-pcre": "*",
"ext-mbstring": "*",
"roave/better-reflection": "^6.42",
"symfony/console": "^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"phpunit/phpunit": "^11.0",
"php-defer/php-defer": "^5.0"
},
"autoload": {
"psr-4": {
"setasign\\PhpStubGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"setasign\\PhpStubGenerator\\Tests\\": "tests/"
}
},
"bin": [
"./bin/php-stub-generator"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"target-directory": "vendor-bin",
"forward-command": true
}
},
"scripts": {
"tests": "@php vendor/bin/phpunit",
"cs": "@php vendor/bin/phpcs",
"phpstan": "@php vendor/bin/phpstan analyse"
}
}