forked from TYPO3-CMS/styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.07 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
{
"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+",
"keywords": [
"typo3",
"typo3 backend",
"style guide"
],
"support": {
"issues": "https://github.com/TYPO3/styleguide/issues"
},
"replace": {
"styleguide": "*"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Styleguide\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Styleguide\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
}
}