-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
32 lines (32 loc) · 878 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
{
"name": "t3brightside/gallerycontent",
"description": "TYPO3 CMS extension to create gallery content element with preset crop ratios and pagination",
"type": "typo3-cms-extension",
"keywords": ["TYPO3", "extension", "images", "gallery", "content"],
"license": "GPL-2.0-or-later",
"homepage": "https://t3brightside.com",
"authors": [{
"name": "Tanel Põld",
"role": "Developer",
"homepage": "https://t3brightside.com"
}],
"require": {
"typo3/cms-core": "^12.4 || ^13.4",
"typo3/cms-fluid-styled-content": "^12.4 || ^13.4",
"t3brightside/paginatedprocessors": "^1.6",
"t3brightside/embedassets": "^1.3"
},
"suggest": {
"t3brightside/imagelazyload": "Add an option to disable laziload in BE"
},
"autoload": {
"psr-4": {
"Brightside\\Gallerycontent\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "gallerycontent"
}
}
}