forked from bitpay/opencart-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.68 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.68 KB
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
{
"name": "beyondit/opencart-plugin",
"description": "BitPay Payment Method for OpenCart",
"type": "opencart-extension",
"keywords": ["bitcoin", "bitpay", "opencart", "payment", "btc", "xbt"],
"homepage": "https://github.com/bitpay/opencart-plugin",
"license": "MIT",
"authors": [
{
"name": "BitPay, Inc.",
"homepage": "https://bitpay.com"
}
],
"support": {
"email": "support@bitpay.com",
"issues": "https://github.com/bitpay/opencart-plugin/issues"
},
"require": {
"php" : ">=5.4.0",
"bitpay/php-client": "~2.2",
"beyondit/opencart-extension-installer": "*"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"squizlabs/php_codesniffer": "2.*",
"codegyre/robo": "*",
"opencart/opencart" : "2.3.0.2",
"vlucas/phpdotenv": "~1.1.0"
},
"config": {
"bin-dir": "bin/"
},
"extra" : {
"src-dir" : "src/upload" ,
"mappings" : [
"admin/controller/extension/payment/bitpay.php" ,
"admin/language/en-gb/extension/payment/bitpay.php" ,
"admin/view/template/extension/payment/bitpay.tpl" ,
"admin/view/image/payment/bitpay.png" ,
"admin/view/image/payment/bitpay_banner.png" ,
"admin/view/image/payment/bitpay_logo.svg" ,
"catalog/controller/extension/payment/bitpay.php" ,
"catalog/language/en-gb/extension/payment/bitpay.php" ,
"catalog/model/extension/payment/bitpay.php" ,
"catalog/view/theme/default/template/extension/payment/bitpay.tpl" ,
"system/library/bitpay.php"
]
}
}