forked from freshworkx/typo3-image-gallery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 1.98 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
72
73
74
75
{
"name": "leuchtfeuer/bm-image-gallery",
"description": "Simple gallery using FileCollections.",
"keywords": [
"TYPO3",
"extension",
"Images",
"Gallery",
"Videos",
"Lightbox"
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://www.Leuchtfeuer.com",
"support": {
"email": "[email protected]",
"issues": "https://github.com/Leuchtfeuer/typo3-image-gallery/issues",
"source": "https://github.com/Leuchtfeuer/typo3-image-gallery",
"docs": "https://docs.typo3.org/p/leuchtfeuer/bm-image-gallery/master/en-us/"
},
"authors": [
{
"name": "Florian Wessels",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.Leuchtfeuer.com"
}
],
"require": {
"typo3/cms-backend": "^10.4.14 || ^11.2",
"typo3/cms-core": "^10.4.14 || ^11.2",
"typo3/cms-extbase": "^10.4.14 || ^11.2",
"typo3/cms-frontend": "^10.4.14 || ^11.2"
},
"suggest": {
"typo3/cms-fluid-styled-content": ""
},
"replace": {
"bitmotion/bm-image-gallery": "self.version",
"typo3-ter/bm-image-gallery": "self.version"
},
"autoload": {
"psr-4": {
"Leuchtfeuer\\BmImageGallery\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Leuchtfeuer\\BmImageGallery\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/bm_image_gallery ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/bm_image_gallery"
]
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web",
"extension-key": "bm_image_gallery"
}
}
}