forked from TYPO3-CMS/styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (65 loc) · 1.47 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": "typo3/cms-styleguide",
"authors": [
{
"name": "TYPO3 CMS Core Team",
"role": "Developer",
"homepage": "https://forge.typo3.org/projects/typo3cms-core"
},
{
"name": "Felix Kopp",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://phorax.com"
}
],
"type": "typo3-cms-extension",
"description": "TYPO3 CMS Extension to test everything in the TYPO3 Backend",
"homepage": "https://github.com/TYPO3/styleguide",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"typo3 backend",
"style guide"
],
"support": {
"issues": "https://github.com/TYPO3/styleguide/issues"
},
"replace": {
"styleguide": "*"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Styleguide\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"require-dev": {
"typo3/cms-core": "^9.5",
"typo3/cms-frontend": "^9.5",
"typo3/cms-install": "^9.5",
"typo3/cms-about": "^9.5",
"typo3/testing-framework": "^4.11.0",
"codeception/codeception": "^2.4"
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Styleguide\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/Web",
"extension-key": "styleguide"
}
}
}