-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
30 lines (29 loc) · 1020 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
29
30
{
"name": "PayPay Sample eCommerce PHP Backend",
"description": "This is a PHP based implementation of PayPay's SDK. For the demonstration purpose we have used a simple PHP server with polling library to create QR code link and to check the order status of a QR code ",
"repository": "https://github.com/paypay/paypay-sample-ecommerce-backend-php",
"logo": "https://avatars3.githubusercontent.com/u/64237612?s=200&v=4",
"keywords": [
"paypay",
"php",
"paypay sample applications"
],
"env": {
"API_KEY": {
"description": "PayPay API Key",
"value": ""
},
"API_SECRET": {
"description": "PayPay API Secret",
"value": ""
},
"MERCHANT_ID": {
"description": "Merchant Payment ID",
"value": ""
},
"REDIRECT_PATH": {
"description": "Frontend Path of your store",
"value": "https://{YOUR-APP}.herokuapp.com/orderpayment"
}
}
}