-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1013 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
{
"name": "simonschaufi/macina-banners",
"type": "typo3-cms-extension",
"description": "Banner management tool with banner placement on frontend, banner rotation, scheduling and statistics.",
"license": ["GPL-2.0-or-later"],
"require": {
"php" : ">=5.6",
"typo3/cms-core": "^7.6 || ^8.0"
},
"require-dev": {
"helhum/typo3-composer-setup": "^0.5.1"
},
"autoload": {
"psr-4": {
"JBartels\\MacinaBanners\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"JBartels\\MacinaBanners\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/macina-banners": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/macina_banners ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/macina_banners"
]
},
"extra": {
"typo3/cms": {
"extension-key": "macina_banners",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
}
}
}