-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
74 lines (74 loc) · 2.29 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
{
"name": "bumble-tech/bumble-doc-gen",
"description": "Documentation generator next to the code for large and small php projects",
"type": "library",
"license": "Apache-2.0",
"keywords": ["documentation-generator", "phpdoc", "cli-tool", "documentation", "docs", "llms", "chatgpt", "php"],
"homepage": "https://github.com/bumble-tech/bumble-doc-gen",
"authors": [
{
"name": "Filipp Shcherbanich",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/bumble-tech/bumble-doc-gen/issues"
},
"require": {
"php": "^8.0.0",
"ext-zlib": "*",
"ext-mbstring": "*",
"symfony/console": "^6.0",
"symfony/finder": "^6.0",
"twig/twig": "^3.3",
"roave/better-reflection": "^5.5",
"nikic/php-parser": "^4.13",
"phpdocumentor/reflection-docblock": "^5.3",
"doctrine/annotations": "^1.13",
"nette/php-generator": "^4.0",
"monolog/monolog": "^2.5",
"bramus/monolog-colored-line-formatter": "^3.0",
"symfony/cache": "^6.0",
"symfony/event-dispatcher": "^6.0",
"php-di/php-di": "^7.0",
"symfony/yaml": "^6.0",
"hassankhan/config": "^3.1",
"guzzlehttp/guzzle": "^7.8",
"symfony/filesystem": "^6.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5",
"dg/bypass-finals": "^1.4",
"squizlabs/php_codesniffer": "3.*",
"captainhook/plugin-composer": "^5.3"
},
"autoload": {
"psr-4": {
"BumbleDocGen\\": "src/"
},
"files": [
"src/Core/utils.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/",
"SelfDocConfig\\": "selfdoc/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"captainhook/plugin-composer": true
}
},
"bin": [
"bin/bumbleDocGen"
],
"scripts": {
"test": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs --standard=psr12 src demo tests --warning-severity=0 --error-severity=1",
"phpcbf": "vendor/bin/phpcbf --standard=psr12 src demo tests"
}
}