-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (50 loc) · 1.55 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
{
"name": "tamdaz/doc2html",
"description": "A tool that enables to convert PHP docs in HTML files.",
"minimum-stability": "dev",
"keywords": ["dev", "generator", "phpdoc"],
"type": "library",
"license": "MIT",
"prefer-stable": true,
"bin": [
"./doc2html"
],
"autoload": {
"psr-4": {
"Tamdaz\\Doc2Html\\": "src/",
"Examples\\": "examples/"
},
"classmap": [
"examples/", "src/"
]
},
"authors": [
{
"name": "tamdaz",
"email": "tamda.zohir.pro@gmail.com"
}
],
"config": {
"platform": {
"php": "8.2"
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"test": "./vendor/bin/phpunit --testdox --color",
"analyze": "./vendor/bin/phpstan analyze src/ examples/ --level 6",
"support": "./vendor/bin/phpcs -p ./src ./examples ./generators --colors \\\n\t--standard=PHPCompatibility --runtime-set testVersion 8.2-"
},
"require": {
"ext-dom": "*",
"barryvdh/reflection-docblock": "^2.1",
"phalcon/cli-options-parser": "^2.0"
},
"require-dev": {
"symfony/var-dumper": "^7.1",
"phpunit/phpunit": "^11.2",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan": "^1.11"
}
}