mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
522 B
PHP
20 lines
522 B
PHP
<?php
|
|
return [
|
|
"payment" => [
|
|
'active_gateway' => env('PAY_GATEWAY', \App\Payment\Zarinpal::getName()),
|
|
'gateways' => [
|
|
\App\Payment\Zibal::class,
|
|
\App\Payment\Zarinpal::class,
|
|
],
|
|
'config' => [
|
|
'zibal' => [
|
|
'merchant' => env('ZIBAL_MERCHANT', 'zibal'),
|
|
],
|
|
'zarinpal' => [
|
|
'merchant' => env('ZARINPAL_MERCHANT'),
|
|
'test' => env('ZARINPAL_TEST')
|
|
],
|
|
],
|
|
]
|
|
];
|