forked from bitpay/bitpay-checkout-for-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 867 Bytes
/
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
{
"name": "bitpay/bitpay-checkout-for-woocommerce",
"type": "library",
"repositories": [
{
"url": "https://github.com/bitpay/php-bitpay-client-v2.git",
"type": "git"
}
],
"require": {
"php": "^8",
"bitpay/sdk": "^8.0.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-develop"
},
"autoload": {
"classmap": ["BitPayLib"]
},
"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"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}