Skip to content

Commit

Permalink
Merge pull request #10 from mdoulabi1/feature_parsian_gateway
Browse files Browse the repository at this point in the history
add parsian gateway
  • Loading branch information
omalizadeh authored May 2, 2023
2 parents 631971b + 83bdd9a commit 55d714e
Show file tree
Hide file tree
Showing 2 changed files with 450 additions and 0 deletions.
32 changes: 32 additions & 0 deletions config/gateway_parsian.php
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',
]
];
Loading

0 comments on commit 55d714e

Please sign in to comment.