-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1.04 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
{
"name": "tracedock/module-transaction-tracking",
"description": "This module handles installation of TraceDock and configuration of serverside transactions",
"type": "magento2-module",
"license": "CC-BY-NC-ND-3.0",
"authors": [
{
"name": "TraceDock",
"email": "support@tracedock.com",
"homepage": "https://tracedock.com"
}
],
"support": {
"email": "support@tracedock.com",
"docs": "https://docs.tracedock.com"
},
"homepage": "https://tracedock.com",
"require": {
"php": "^7.4",
"magento/framework": "*",
"magento/module-sales": "*",
"magento/module-asynchronous-operations": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"minimum-stability": "stable",
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Tracedock\\TransactionTracking\\": "src/"
}
}
}