-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfastpay.php
More file actions
30 lines (26 loc) · 1.15 KB
/
Copy pathfastpay.php
File metadata and controls
30 lines (26 loc) · 1.15 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
<?php
return [
/*
|--------------------------------------------------------------------------
| Fastpay Environment
|--------------------------------------------------------------------------
|
| This value is the environment that you want to choose for Fastpay integration to your application.
| values are (staging, production)
|
*/
'environment' => env('FASTPAY_ENVIRONMENT', 'staging'),
'staging_base_url' => env('FASTPAY_STAGING_BASE_URL', 'https://staging-apigw-merchant.fast-pay.iq'),
'production_base_url' => env('FASTPAY_PRODUCTION_BASE_URL', 'https://apigw-merchant.fast-pay.iq'),
/*
|--------------------------------------------------------------------------
| Credentials
|--------------------------------------------------------------------------
|
| The account credentials you use to authenticate the request determines whether the request is live mode or test mode
| Fastpay credentials are required to perform a transaction.
*/
"store_id" => env('FASTPAY_STORE_ID'),
"store_password" => env('FASTPAY_STORE_PASSWORD'),
"refund_secret_key" => env('FASTPAY_REFUND_SECRET_KEY'),
];