-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
68 lines (68 loc) · 1.81 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/docbook-tool",
"description": "Generates static documentation from Markdown docs",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "James Titcumb",
"email": "james@asgrim.com"
}
],
"require": {
"php": "~8.3.3",
"ext-curl": "*",
"ext-gd": "*",
"guzzlehttp/guzzle": "^7.8.1",
"guzzlehttp/psr7": "^2.6.2",
"jasny/twig-extensions": "^1.3",
"michelf/php-markdown": "^2.0",
"monolog/monolog": "^3.5.0",
"psr/log": "^3.0.0",
"symfony/yaml": "^7.0.3",
"thecodingmachine/safe": "^2.5.0",
"twig/twig": "^3.8.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"phpunit/phpunit": "^10.5.11",
"psalm/plugin-phpunit": "^0.18.4",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.22.2"
},
"autoload": {
"psr-4": {
"Roave\\DocbookTool\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Roave\\DocbookToolUnitTest\\": "test/unit",
"Roave\\DocbookToolIntegrationTest\\": "test/integration"
}
},
"suggest": {
"ext-posix": "Allows interactive entry of Confluence credentials"
},
"bin": [
"bin/docbook-tool"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"scripts": {
"post-install-cmd": [
"which java",
"which wkhtmltopdf"
],
"post-update-cmd": [
"which java",
"which wkhtmltopdf"
]
}
}