-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
67 lines (67 loc) · 2.29 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
{
"name": "opengento/module-document",
"description": "This module aims to help merchants to manage easily their documents in Magento 2.",
"keywords": [
"php",
"magento",
"magento2",
"module",
"extension",
"document",
"resources",
"tool",
"import"
],
"type": "magento2-module",
"require": {
"php": "^7.0||^8.0",
"ext-dom": "*",
"magento/framework": "^103.0",
"magento/module-backend": "^102.0",
"magento/module-cache-invalidate": "^100.4",
"magento/module-config": "^101.0",
"magento/module-page-cache": "^100.0",
"magento/module-ui": "^101.0"
},
"require-dev": {
"magento/magento-coding-standard": "*",
"roave/security-advisories": "dev-master"
},
"suggest": {
"opengento/module-document-product-link": "This module aims to help merchants to link their documents to products in Magento 2.",
"opengento/module-document-product-search": "This module aims to make documents searchable with product keywords in Magento 2.",
"opengento/module-document-search": "This module aims to make documents searchable for customers in Magento 2.",
"opengento/module-document-widget": "This module aims to help merchants to manage easily their documents on the Magento 2 storefront.",
"opengento/module-document-restrict": "This module aims to restrict documents by type in Magento 2."
},
"license": [
"MIT"
],
"homepage": "https://github.com/opengento/magento2-document",
"authors": [
{
"name": "Opengento Team",
"email": "[email protected]",
"homepage": "https://opengento.fr/",
"role": "lead"
},
{
"name": "Thomas Klein",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/thomas-klein/",
"role": "maintainer"
}
],
"support": {
"source": "https://github.com/opengento/magento2-document",
"issues": "https://github.com/opengento/magento2-document/issues"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Opengento\\Document\\": ""
}
}
}