-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
70 lines (70 loc) · 2.4 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
{
"name": "t3docs/render-guides",
"description": "phpDocumentor-based Documentation rendering for docs.typo3.org or custom extensions.",
"license": "OPL-1.0",
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-libxml": "*",
"brotkrueml/twig-codehighlight": "^0.1.1",
"phpdocumentor/guides": "^1.6",
"phpdocumentor/guides-cli": "^1.5",
"phpdocumentor/guides-graphs": "^1.0",
"phpdocumentor/guides-markdown": "^1.5",
"phpdocumentor/guides-restructured-text": "^1.5",
"phpdocumentor/guides-theme-bootstrap": "^1.0",
"symfony/clock": "^6.4",
"symfony/finder": "^6.4",
"symfony/http-client": "^6.4",
"symfony/yaml": "^6.4",
"t3docs/console-command": "^0.2.0",
"t3docs/guides-php-domain": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5",
"symfony/console": "^6.4",
"symplify/monorepo-builder": "^11.2",
"symplify/phpstan-rules": "^13.0"
},
"replace": {
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"t3docs/typo3-docs-theme": "self.version",
"t3docs/typo3-guides-cli": "self.version",
"t3docs/typo3-guides-extension": "self.version",
"t3docs/typo3-version-handling": "self.version"
},
"autoload": {
"psr-4": {
"T3Docs\\GuidesCli\\": "packages/typo3-guides-cli/src/",
"T3Docs\\GuidesExtension\\": "packages/typo3-guides-extension/src/",
"T3Docs\\Typo3DocsTheme\\": "packages/typo3-docs-theme/src/",
"T3Docs\\VersionHandling\\": "packages/typo3-version-handling/src/"
}
},
"autoload-dev": {
"psr-4": {
"T3Docs\\GuidesCli\\Tests\\": "tests/",
"T3Docs\\Typo3DocsTheme\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpdocumentor/shim": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.27"
},
"sort-packages": true
},
"scripts": {
"make": "make ENV=local $COMPOSER_SCRIPT_ARGS"
}
}