-
Notifications
You must be signed in to change notification settings - Fork 131
/
composer.json
68 lines (67 loc) · 1.85 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
65
66
67
68
{
"name": "roave/better-reflection",
"description": "Better Reflection - an improved code reflection API",
"license": "MIT",
"require": {
"php": "~8.2.0 || ~8.3.2",
"ext-json": "*",
"jetbrains/phpstorm-stubs": "2024.2",
"nikic/php-parser": "^5.3.1"
},
"authors": [
{
"name": "James Titcumb",
"email": "[email protected]",
"homepage": "https://github.com/asgrim"
},
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "https://ocramius.github.io/"
},
{
"name": "Gary Hockin",
"email": "[email protected]",
"homepage": "https://github.com/geeh"
},
{
"name": "Jaroslav Hanslík",
"email": "[email protected]",
"homepage": "https://github.com/kukulich"
}
],
"require-dev": {
"phpbench/phpbench": "^1.3.1",
"phpunit/phpunit": "^11.4.3"
},
"autoload": {
"psr-4": {
"Roave\\BetterReflection\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Roave\\BetterReflectionTest\\": "test/unit",
"Roave\\BetterReflectionBenchmark\\": "test/benchmark"
}
},
"conflict": {
"thecodingmachine/safe": "<1.1.3"
},
"scripts": {
"cs": "tools/vendor/bin/phpcs",
"csfix": "tools/vendor/bin/phpcbf",
"psalm": "tools/vendor/bin/psalm",
"psalm-baseline": "tools/vendor/bin/psalm --set-baseline=psalm-baseline.xml"
},
"suggest": {
"composer/composer": "Required to use the ComposerSourceLocator"
},
"minimum-stability": "dev",
"config": {
"platform": {
"php": "8.2.99"
}
},
"prefer-stable": true
}