-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.24 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
{
"name": "oxcom/magento2-top-products",
"description": "This is a module that extends Magento2 API to get list of TOP products.",
"type": "magento2-module",
"license": "LGPL-3.0",
"keywords": [
"magento2",
"top products",
"api"
],
"homepage": "https://github.com/OxCom/magento2-top-products",
"require": {
"php": ">=5.6",
"magento/module-config": "100.0.*|100.1.*|101.0.*|101.1.*|101.2.*",
"magento/module-store": "100.0.*|100.1.*|100.2.*|101.0.*|101.1.*",
"magento/module-backend": "100.0.*|100.1.*|100.2.*|101.0.*|102.0.*|103.0.*",
"magento/module-directory": "100.0.*|100.1.*|100.2.*|100.3.*|100.4.*",
"magento/framework": "100.0.*|100.1.*|101.0.*|102.0.*|103.0.*"
},
"require-dev": {
"magento/zendframework1": "1.12.*|1.13.*|1.14.*",
"phpunit/phpunit": "5.3.5|^7.5.20|^9.3.8",
"squizlabs/php_codesniffer": "^3.5.8"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"OxCom\\MagentoTopProducts\\": ""
}
},
"autoload-dev": {
"classmap": [
]
},
"authors": [
{
"name": "OxCom",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}