forked from williankeller/magento2-log-webapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.11 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": "magestat/module-log-webapi",
"description": "This extension creates a log file and saves all transactions that are requested through your store's Rest API.",
"type": "magento2-module",
"license": "OSL-3.0",
"version": "1.0.1",
"authors": [
{
"name": "Willian Keller",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/magestat/magento2-log-webapi/issues/"
},
"require": {
"php": "7.0.2|7.0.*|7.1.*|7.2.*",
"magento/module-backend": "100.0.*|100.1.*|100.2.*|100.3.*|101.0.*",
"magento/framework": "100.0.*|100.1.*|100.2.*|100.3.*|101.0.*"
},
"require-dev": {
"phpmd/phpmd": "@stable",
"phpspec/phpspec": "^2.5",
"squizlabs/php_codesniffer": "3.0.1"
},
"repositories": {
"0": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload": {
"psr-4": {
"Magestat\\LogWebapi\\": ""
},
"files": [
"registration.php"
]
}
}