-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
53 lines (53 loc) · 1.19 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
{
"name": "bitpay/bitpay-checkout-for-woocommerce",
"type": "library",
"repositories": [
{
"url": "https://github.com/bitpay/php-bitpay-client-v2.git",
"type": "git"
}
],
"require": {
"php": "^8.1",
"bitpay/sdk": "^9.1.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-develop",
"phpunit/phpunit": "^9.6",
"lucatume/wp-browser": "^4.0",
"wp-phpunit/wp-phpunit": "^6.4",
"yoast/phpunit-polyfills": "^2.0"
},
"autoload": {
"classmap": ["BitPayLib"]
},
"autoload-dev": {
"psr-4": {
"BitPayLib\\Tests\\": "tests/"
}
},
"scripts": {
"add-prefix": [
"php php-scoper.phar add-prefix --force --quiet",
"composer dump-autoload --working-dir build"
],
"dump-prefixed-vendor": "composer dump-autoload --working-dir build --classmap-authoritative",
"post-install-cmd": [
"composer add-prefix"
],
"post-update-cmd": [
"composer add-prefix"
],
"phpcbf": [
"./vendor/bin/phpcbf BitPayLib"
],
"test:codeception": [
"./vendor/bin/codecept run"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}