-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
47 lines (47 loc) · 1.78 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
{
"name": "woocommerce/woocommerce-gateway-amazon-payments-advanced",
"description": "Amazon Pay is embedded directly into your existing web site, and all the buyer interactions with Amazon Pay and Login with Amazon take place in embedded widgets so that the buyer never leaves your site. Buyers can log in using their Amazon account, select a shipping address and payment method, and then confirm their order. Requires an Amazon Pay seller account and supports USA, UK, Germany, France, Italy, Spain, Luxembourg, the Netherlands, Sweden, Portugal, Hungary, Denmark, and Japan.",
"homepage": "https://woocommerce.com/products/woocommerce-gateway-amazon-payments-advanced/",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"archive": {
"exclude": [
"!/assets",
"!/languages",
"!/vendor",
"phpcs.xml",
"phpstan.neon",
".idea"
]
},
"config": {
"platform": {
"php": "7.3"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"phpcs": [
"phpcs . --ignore=vendor,node_modules,build --extensions=php -s -p"
],
"phpcbf": [
"phpcbf . --ignore=vendor,node_modules,build --extensions=php -p"
]
},
"require-dev": {
"phpunit/phpunit": "9.5.14",
"woocommerce/woocommerce-sniffs": "0.1.0",
"php-stubs/woocommerce-stubs": "^5.1",
"szepeviktor/phpstan-wordpress": "^0.7.5",
"phpstan/extension-installer": "^1.1",
"yoast/phpunit-polyfills": "^1.0",
"wp-cli/wp-cli-bundle": "*"
},
"require": {
"amzn/amazon-pay-api-sdk-php": "2.6.2",
"php": "7.*"
}
}