forked from YAG-Gallery/yag
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 898 Bytes
/
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
{
"name": "dl/yag",
"type": "typo3-cms-extension",
"description": "Scalable, powerful, easy-to-manage Gallery Extension for TYPO3",
"keywords": [
"TYPO3",
"extension"
],
"authors": [
{
"name": "Daniel Lienert",
"role": "Developer"
}
],
"homepage": "http://yag-gallery.de",
"license": [
"GPL-2.0+"
],
"require": {
"typo3/cms-core": ">=7.6.0,<8.0",
"punktde/pt_extbase": "~2.3.0",
"punktde/pt_extlist": "~2.4.0"
},
"require-dev": {
"mikey179/vfsStream": "1.4.*@dev",
"phpunit/phpunit": "~4.8.0"
},
"autoload": {
"psr-4": {
"DL\\Yag\\": "Classes"
},
"classmap": [
"Classes/"
]
},
"replace": {
"yag": "self.version",
"typo3-ter/yag": "self.version"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}