forked from TYPO3-Caretaker/caretaker_instance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.31 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "caretaker/caretaker_instance",
"description": "TYPO3 caretaker instance",
"type": "typo3-cms-extension",
"homepage": "https://github.com/TYPO3-Caretaker/",
"require": {
"typo3/cms-core": "^6.2.14|^7.6|^8.7"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "^1.1",
"nimut/testing-framework": "^1.0"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Tool to automatically fix PHP coding standards issues"
},
"autoload": {
"classmap": [
"classes/",
"services/"
]
},
"autoload-dev": {
"psr-4": {
"Caretaker\\CaretakerInstance\\Tests\\": "Tests/"
}
},
"replace": {
"caretaker_instance": "self.version",
"typo3-ter/caretaker_instance": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/caretaker_instance ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/caretaker_instance"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}