forked from lochmueller/faq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.59 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
{
"name": "lochmueller/faq",
"type": "typo3-cms-extension",
"description": "Basic FAQ (Frequently Asked Questions) extension in a clean extbase/fluid structure. Questions and Question categroies with a smart plugin structure.",
"autoload": {
"psr-4": {
"HDNET\\Faq\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"HDNET\\Faq\\Tests\\": "Tests"
}
},
"keywords": [
"TYPO3 CMS",
"FAQ"
],
"authors": [
{
"name": "Tim Lochmüller",
"email": "webmaster@fruit-lab.de",
"role": "Developer",
"homepage": "https://github.com/lochmueller"
}
],
"require": {
"php": "^7.4||^8.0",
"lochmueller/autoloader": "^7.2",
"typo3/cms-core": "^11.5"
},
"replace": {
"typo3-ter/faq": "self.version"
},
"homepage": "https://github.com/lochmueller/faq",
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/lochmueller/faq/issues"
},
"require-dev": {
"typo3/testing-framework": "^6.2",
"friendsofphp/php-cs-fixer": "^3.8",
"squizlabs/php_codesniffer": "^3.3",
"phpmd/phpmd": "^2.6"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
},
"extension-key": "faq"
}
},
"scripts": {
"code": [
"php-cs-fixer fix --config .php-cs-fixer.php"
]
}
}