forked from braintree/braintree_php_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
28 lines (28 loc) · 810 Bytes
/
app.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
{
"name": "Braintree PHP Example",
"description": "An example Braintree integration for PHP",
"keywords": ["braintree", "php"],
"website": "https://www.braintreepayments.com",
"repository": "https://github.com/braintree/braintree_php_example",
"logo": "https://avatars1.githubusercontent.com/u/3453",
"success_url": "/",
"env": {
"BT_ENVIRONMENT": {
"description": "Run against Braintree sandbox environment",
"required": true,
"value": "sandbox"
},
"BT_MERCHANT_ID": {
"description": "Your Braintree Merchant ID",
"required": true
},
"BT_PUBLIC_KEY": {
"description": "Your Braintree Public Key",
"required": true
},
"BT_PRIVATE_KEY": {
"description": "Your Braintree Private Key",
"required": true
}
}
}