forked from TYPO3-CMS/styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.01 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
70
71
{
"name": "typo3/cms-styleguide",
"type": "typo3-cms-extension",
"description": "TYPO3 extension to showcase TYPO3 Backend capabilities",
"authors": [
{
"name": "TYPO3 CMS Core Team",
"role": "Developer",
"homepage": "https://forge.typo3.org/projects/typo3cms-core"
},
{
"name": "The TYPO3 Community",
"role": "Contributor",
"homepage": "https://typo3.org/community/"
}
],
"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"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Styleguide\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"composer/package-versions-deprecated": true
}
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-cli": "^2.0",
"codeception/module-webdriver": "^4.0",
"friendsofphp/php-cs-fixer": "^3.16.0",
"phpstan/phpstan": "^1.10.14",
"typo3/cms-core": "~13.0@dev",
"typo3/cms-frontend": "~13.0@dev",
"typo3/cms-install": "~13.0@dev",
"typo3/testing-framework": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Styleguide\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/Web",
"extension-key": "styleguide"
},
"branch-alias": {
"dev-main": "13.x.x-dev"
}
}
}