-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from mdoulabi1/feature_parsian_gateway
add parsian gateway
- Loading branch information
Showing
2 changed files
with
450 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/** | ||
* driver class namespace | ||
*/ | ||
'driver' => Omalizadeh\MultiPayment\Drivers\Parsian\Parsian::class, | ||
|
||
/** | ||
* soap client options | ||
*/ | ||
'soap_options' => [ | ||
'encoding' => 'UTF-8', | ||
], | ||
|
||
/** | ||
* gateway configurations | ||
*/ | ||
'main' => [ | ||
'pin_code' => '', | ||
'callback_url' => 'https://yoursite.com/path/to', | ||
'callback_method' => 'POST', | ||
'description' => '', | ||
], | ||
|
||
'other' => [ | ||
'pin_code' => '', | ||
'callback_url' => 'https://yoursite.com/path/to', | ||
'description' => 'payment using parsian', | ||
] | ||
]; |
Oops, something went wrong.