-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 810 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 810 Bytes
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
{
"name": "visol/cloudinary",
"description": "Cloudinary integration in TYPO3. Use automatic breakpoint generation for images.",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"require": {
"cloudinary/cloudinary_php": "^2",
"ext-json": "*",
"php": ">= 8.1 < 8.5",
"typo3/cms-backend": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-fluid": "^12.4"
},
"require-dev": {
"phpstan/phpstan": "^1.12"
},
"autoload": {
"psr-4": {
"Visol\\Cloudinary\\Tests\\": "Tests/",
"Visol\\Cloudinary\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "cloudinary"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}