-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.46 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
{
"name": "synerise/synerise-for-woocommerce",
"description": "Synerise integration with Wordpress WooCommerce plugin.",
"version": "1.2.1",
"require-dev": {
"composer/installers": "^1.7.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"woocommerce/woocommerce-sniffs": "^0.1.0",
"wp-coding-standards/wpcs": "^2.3",
"phpunit/phpunit": ">=8.0.0,<10.0.0",
"yoast/phpunit-polyfills": "^1.0",
"mockery/mockery": "^1.3"
},
"require": {
"php": "^7.2.5 || ^8.0",
"automattic/jetpack-autoloader": "^2.10.1",
"guzzlehttp/guzzle": "^7.8.1",
"ramsey/uuid": "^2.8",
"mobiledetect/mobiledetectlib": "^2.8",
"gmponos/guzzle_logger": "^2.2.0"
},
"type": "wordpress-plugin",
"keywords": [
"synerise",
"woocommerce"
],
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Synerise\\Integration\\": "./src",
"Synerise\\IntegrationCore\\" : "./lib/integration-core/",
"Synerise\\DataManagement\\" : "./lib/api-data-management/",
"Synerise\\Integration\\Tests\\" : "./tests/"
}
},
"config": {
"platform": {
"php": "7.2.25"
},
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}