forked from DrWh0286/fluid-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.19 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
{
"name": "pluswerk/fluid-styleguide",
"type": "typo3-cms-extension",
"description": "TYPO3 Living Styleguide: Provides a css and fluid component based styleguide",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS"],
"authors": [
{
"name": "Sebastian Hofer",
"email": "[email protected]",
"homepage": "http://www.pluswerk.ag",
"role": "Developer"
}
],
"require": {
"typo3/minimal": "^9.5",
"sitegeist/fluid-components": "^1.0.0"
},
"require-dev": {
"typo3/testing-framework": "^4.11.0",
"pluswerk/grumphp-req-package": "^0.0.3",
"symfony/var-dumper": "^4.1",
"helhum/typo3-console": "^5.6"
},
"autoload": {
"psr-4": {
"Pluswerk\\FluidStyleguide\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Pluswerk\\FluidStyleguide\\Test\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"repositories": {
"grumphp-req": {
"type": "vcs",
"url": "https://github.com/plus-muc/grumphp-req-package.git"
}
}
}