-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (82 loc) · 2.25 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
81
82
83
{
"name": "ultimatemember/docs",
"description": "Doc Generator By Ultimate Member Group Ltd.",
"type": "wordpress-plugin",
"homepage": "https://ultimatemember.com/",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Ultimate Member Group Ltd.",
"email": "[email protected]"
}
],
"scripts": {
"um_build_docs": [
"php .um/build.php"
],
"phpdoc": [
"phpdoc"
],
"wp-hooks": [
"wp-hooks-generator --input=. --ignore-files=/vendor/,/.github/ --output=docs/ultimatemember/hooks ",
"php .um/hooks.php",
"php .um/snippets.php"
],
"helpscout_sync": [
"php .um/helpscout.php"
],
"render_snippets": [
"php .um/snippets.php"
],
"test": [
"php docs/ultimatemember/tests.php",
"Composer\\Config::disableProcessTimeout"
]
},
"extra": {
"wp-hooks": {
"ignore-files": [
"docs/",
"vendor/",
"php-scoper/"
]
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/champsupertramp/phpdoc-vuepress"
},
{
"type": "vcs",
"url": "https://github.com/champsupertramp/html-to-markdown"
}
],
"require-dev": {
"wp-cli/wp-cli": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"object-calisthenics/phpcs-calisthenics-rules": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "2.3.0",
"squizlabs/php_codesniffer": "3.*",
"phpdocumentor/phpdocumentor": "2.9",
"champsupertramp/phpdoc-vuepress": "dev-master",
"champsupertramp/html-to-markdown": "dev-master",
"dompdf/dompdf": "^0.8.6",
"jms/serializer": "^1.7",
"wp-hooks/generator": "^0.9.0",
"vlucas/phpdotenv": "^5.5",
"league/html-to-markdown": "^5.1"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpdocumentor/unified-asset-installer": true,
"composer/installers": true
},
"process-timeout":0
}
}