-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.25 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.25 KB
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
{
"name": "stefanfroemken/dropbox",
"type": "typo3-cms-extension",
"description": "Add a FAL driver for Dropbox to TYPO3",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"TYPO3 CMS",
"dropbox",
"fal",
"driver"
],
"homepage": "https://www.typo3lexikon.de",
"authors": [
{
"name": "Stefan Froemken",
"email": "froemken@gmail.com",
"role": "Lead Developer"
}
],
"support": {
"email": "froemken@gmail.com",
"issues": "https://github.com/froemken/dropbox/issues",
"source": "https://github.com/froemken/dropbox"
},
"require": {
"typo3/cms-core": "^13.4.12",
"spatie/dropbox-api": "1.23.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^8.2"
},
"autoload": {
"psr-4": {
"StefanFroemken\\Dropbox\\": "Classes"
}
},
"replace": {
"typo3-ter/dropbox": "self.version"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "dropbox",
"web-dir": ".Build/public"
}
}
}