forked from EmicoEcommerce/Magento2RobinHq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.27 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
{
"name": "emico/magento-2-robinhq",
"license": "OSL-3.0",
"description": "Magento 2 module for RobinHQ integration. Provides API endpoints for RobinHQ dynamic API",
"require": {
"php": "^7.1.0",
"emico/robinhq-lib": "^1.0.6",
"magento/module-customer": "101.*|102.*|103.*",
"magento/module-catalog": "102.*|103.*|104.*",
"magento/module-sales": "101.*|102.*|103.*",
"magento/module-config": "101.*",
"magento/framework": "101.*|102.*|103.*",
"zendframework/zend-diactoros": "^1.8",
"webmozart/assert": "^1.4",
"ext-json": "*"
},
"suggest": {
"magento/module-message-queue": "Use Magento AMQP queuing for POST requests. Highly recommended",
"magento/framework-message-queue": "Use Magento AMQP queuing for POST requests. Highly recommended"
},
"type": "magento2-module",
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Emico\\RobinHq\\": "src"
}
},
"require-dev": {
"codeception/codeception": "^3.1",
"mockery/mockery": "^1.2"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}