-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
66 lines (66 loc) · 2.13 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
{
"name": "opengento/module-document-product-link",
"description": "This module aims to help merchants to link their documents to products in Magento 2.",
"keywords": [
"php",
"magento",
"magento2",
"module",
"extension",
"document",
"product",
"link",
"attachment",
"indexer"
],
"type": "magento2-module",
"require": {
"magento/framework": "^103.0",
"magento/module-catalog": "^104.0",
"magento/module-config": "^101.0",
"magento/module-eav": "^102.0",
"magento/module-ui": "^101.0",
"opengento/module-document": "^2.0",
"opengento/module-document-widget": "^1.0||^2.0"
},
"require-dev": {
"magento/magento-coding-standard": "^5",
"magento/marketplace-eqp": "^4.0",
"roave/security-advisories": "dev-master"
},
"suggest": {
"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-restrict": "This module aims to restrict documents by type in Magento 2."
},
"license": [
"MIT"
],
"homepage": "https://github.com/opengento/magento2-document-product-link",
"authors": [
{
"name": "Opengento Team",
"email": "opengento@gmail.com",
"homepage": "https://opengento.fr/",
"role": "lead"
},
{
"name": "Thomas Klein",
"email": "thomaskein876@gmail.com",
"homepage": "https://www.linkedin.com/in/thomas-klein/",
"role": "maintainer"
}
],
"support": {
"source": "https://github.com/opengento/magento2-document-product-link",
"issues": "https://github.com/opengento/magento2-document-product-link/issues"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Opengento\\DocumentProductLink\\": ""
}
}
}