forked from TYPO3-Documentation/render-guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.14 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
{
"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": "dev-main",
"phpdocumentor/guides-cli": "dev-main",
"phpdocumentor/guides-graphs": "dev-main",
"phpdocumentor/guides-markdown": "dev-main",
"phpdocumentor/guides-theme-bootstrap": "dev-main",
"symfony/clock": "^6.4",
"symfony/finder": "^6.4",
"symfony/http-client": "^6.4",
"t3docs/guides-php-domain": "dev-main"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.39",
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.5",
"symfony/console": "^6.4",
"symplify/monorepo-builder": "^11.2",
"symplify/phpstan-rules": "^12.4"
},
"replace": {
"t3docs/typo3-docs-theme": "self.version",
"t3docs/typo3-guides-cli": "self.version",
"t3docs/typo3-guides-extension": "self.version"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/brotkrueml/twig-codehighlight"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"T3Docs\\GuidesCli\\": "packages/typo3-guides-cli/src/",
"T3Docs\\GuidesExtension\\": "packages/typo3-guides-extension/src/",
"T3Docs\\Typo3DocsTheme\\": "packages/typo3-docs-theme/src/"
}
},
"autoload-dev": {
"psr-4": {
"T3Docs\\GuidesCli\\Tests\\": "tests/",
"T3Docs\\Typo3DocsTheme\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"make": "make ENV=local $COMPOSER_SCRIPT_ARGS"
}
}