-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.05 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
{
"name": "team23/module-wysiwyg-downloads",
"description": "This module makes it possible to upload different files inside WYSIWYG editor",
"version": "1.0.0",
"type": "magento2-module",
"license": ["BSD-3-Clause"],
"authors": [
{
"name": "Team23 GmbH",
"email": "[email protected]",
"homepage": "https://www.team23.de"
}
],
"require": {
"php": "^8.1",
"magento/framework": "^103.0",
"magento/module-backend": "^102.0",
"magento/module-cms": "^104.0",
"magento/module-config": "^101.2",
"magento/module-media-gallery-api": "^101.0",
"magento/module-media-gallery-ui": "^100.4",
"magento/module-media-gallery": "^100.4",
"magento/module-store": "^101.1",
"psr/log": "^1.1"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Team23\\WysiwygDownloads\\": "src"
}
}
}