-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.56 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
{
"name": "trackmage/trackmage-woo-shipment-tracking",
"type": "wordpress-plugin",
"version": "2.0.2",
"description": "TrackMage integrates shipments tracking into your WooCommerce store",
"keywords": [
"trackmage"
],
"homepage": "https://github.com/trackmage/trackmage-woo-shipment-tracking",
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.4 | ^8.1 | ^8.2",
"ext-json": "*",
"psr/log": "^1.1",
"trackmage/trackmage-sdk-php": "^0.3.2"
},
"require-dev": {
"ext-intl": "*",
"automattic/vipwpcs": "^2.3",
"codeception/module-asserts": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^2.0",
"codeception/module-webdriver": "^1.0",
"codeception/util-universalframework": "^1.0",
"composer/composer": "^2.2",
"lucatume/wp-browser": "^3.0",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.7.1",
"wp-coding-standards/wpcs": "^2.3.0"
},
"config": {
"platform": {
"php": "7.4.33"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"TrackMage\\WordPress\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TrackMage\\WordPress\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/trackmage/trackmage-woo-shipment-tracking/issues",
"source": "https://github.com/trackmage/trackmage-woo-shipment-tracking"
}
}