This repository was archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.76 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.76 KB
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
{
"name": "causal/sphinx",
"type": "typo3-cms-extension",
"description": "Installs a full-fledged Sphinx environment within your TYPO3 website. Builds and renders Sphinx/reStructuredText-based projects such as extension manuals, official reference guides or your own in-house documents as HTML/JSON/PDF either from TYPO3 Backend or from command-line, as you prefer. Features a reStructuredText editor with cross-reference browser and syntax highlighting.",
"keywords": [
"TYPO3 CMS",
"reStructuredText",
"sphinx-doc",
"LaTeX",
"documentation"
],
"homepage": "https://forge.typo3.org/projects/extension-sphinx",
"support": {
"issues": "https://forge.typo3.org/projects/extension-sphinx/issues"
},
"authors": [
{
"name": "Xavier Perseguers",
"email": "xavier@causal.ch",
"homepage": "https://www.causal.ch",
"role": "Developer"
}
],
"license": "GPL-2.0+",
"require": {
"php": ">= 5.5.0, <= 7.1.99",
"typo3/cms-core": ">= 7.6.0, <= 8.7.99"
},
"autoload": {
"psr-4": {
"Causal\\Sphinx\\": "Classes/"
}
},
"replace": {
"sphinx": "self.version",
"typo3-ter/sphinx": "self.version"
},
"suggest": {
"typo3-ter/restdoc": "Allows interactive rendering and enhanced use of built-in reStructuredText editor"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/sphinx ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/sphinx"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.5.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}