forked from Stephen-Gose-Game-Studio/ApiGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (78 loc) · 3.68 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "apigen/apigen",
"description": "PHP 7.1 source code API generator.",
"license": "MIT",
"authors": [
{ "name": "ApiGen Contributors", "homepage": "https://github.com/apigen/apigen/graphs/contributors" },
{ "name": "Jaroslav Hanslík", "homepage": "https://github.com/kukulich" },
{ "name": "Ondřej Nešpor", "homepage": "https://github.com/andrewsville" },
{ "name": "David Grudl", "homepage": "http://davidgrudl.com" }
],
"bin": ["bin/apigen"],
"require": {
"php": "^7.1",
"roave/better-reflection": "dev-master#c87d856",
"kukulich/fshl": "^2.1",
"latte/latte": "^2.4",
"nette/utils": "^2.4",
"nette/finder": "^2.4",
"nette/neon": "^2.4",
"symfony/config": "^3.3",
"symfony/console": "^3.3",
"symfony/finder": "^3.3",
"symfony/dependency-injection": "^3.3",
"symfony/http-kernel": "^3.3",
"symfony/yaml": "^3.3",
"symplify/package-builder": "^2.2",
"psr/container": "^1.0",
"zendframework/zend-code": "^3.1"
},
"require-dev": {
"tracy/tracy": "^2.4",
"phpunit/phpunit": "^6.0",
"phpstan/phpstan": "^0.8",
"symplify/easy-coding-standard": "2.3.1"
},
"autoload": {
"psr-4": {
"ApiGen\\": "src",
"ApiGen\\Annotation\\": "packages/Annotation/src",
"ApiGen\\BetterReflection\\": "packages/BetterReflection/src",
"ApiGen\\Element\\": "packages/Element/src",
"ApiGen\\ModularConfiguration\\": "packages/ModularConfiguration/src",
"ApiGen\\Reflection\\": "packages/Reflection/src",
"ApiGen\\StringRouting\\": "packages/StringRouting/src"
}
},
"autoload-dev": {
"psr-4": {
"ApiGen\\Tests\\": "tests",
"ApiGen\\Annotation\\Tests\\": "packages/Annotation/tests",
"ApiGen\\Element\\Tests\\": "packages/Element/tests",
"ApiGen\\Reflection\\Tests\\": "packages/Reflection/tests",
"ApiGen\\StringRouting\\Tests\\": "packages/StringRouting/tests"
},
"files": [
"packages/Element/tests/ReflectionCollector/NamespaceReflectionCollectorSource/namespacedFunction.php",
"packages/Element/tests/ReflectionCollector/NamespaceReflectionCollectorSource/NoneNamespacedClass.php",
"packages/Element/tests/ReflectionCollector/Source/deprecatedFunction.php",
"packages/Reflection/tests/Parser/DifferentVendorSources/vendor/DifferentVendor/DifferentClass.php",
"packages/Reflection/tests/Parser/DifferentVendorSources/src/MyVendor/MyClass.php",
"packages/Reflection/tests/Reflection/Function_/FunctionReflection/Source/SomeFunction.php",
"packages/Reflection/tests/Reflection/Function_/FunctionParameterReflection/Source/functionWithConstant.php",
"packages/Reflection/tests/Reflection/Function_/FunctionParameterReflection/Source/functionWithVariadic.php",
"packages/Reflection/tests/Reflection/Function_/FunctionParameterReflection/Source/functionWithClass.php",
"packages/Annotation/tests/AnnotationSubscriber/SeeAnnotationSubscriberSource/SomeClassWithSeeAnnotations.php",
"packages/Annotation/tests/AnnotationSubscriber/SeeAnnotationSubscriberSource/SomeFunction.php"
]
},
"scripts": {
"complete-check": ["phpunit", "@phpstan", "@check-cs"],
"phpstan": "phpstan analyse packages src bin --level 4 -c phpstan.neon",
"check-cs": "ecs check packages bin src tests",
"fix-cs": "ecs check packages bin src tests --fix"
},
"config": {
"sort-packages": true
}
}