-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.69 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
{
"name": "qbus/qbtools",
"type": "typo3-cms-extension",
"description": "Basic tools for other qbus extensions",
"keywords": [
"TYPO3",
"extension"
],
"homepage": "https://www.qbus.de",
"support": {
"issues": "https://github.com/qbus-agentur/qbtools/issues"
},
"authors": [
{
"name": "Axel Wüstemann",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.qbus.de"
},
{
"name": "Benjamin Franzke",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.qbus.de"
}
],
"license": "GPL-2.0+",
"require": {
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-frontend": "^12.4"
},
"autoload": {
"psr-4": {
"Qbus\\Qbtools\\": "Classes"
}
},
"replace": {
"typo3-ter/qbtools": "self.version"
},
"require-dev": {
"typo3/testing-framework": "^2.0 || ^4.9 || ^6.2",
"phpspec/prophecy": "^1.7",
"php-coveralls/php-coveralls": "^2.0",
"rector/rector": "^0.12.5"
},
"config": {
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "qbtools",
"web-dir": ".build/web"
},
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": "mkdir -p .build/web/typo3conf/ext/ && ln -snf ../../../.. .build/web/typo3conf/ext/qbtools"
}
}