/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
tzsk
/
payu
/
src
/
Config
/
/home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Config
mkdir
upload
Name
Size
Mode
Actions
payu.php
3158
0644
edit
dl
rm
tzsk-payu.php
1571
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Config/payu.php
(3158B)
<?php return [ /* |-------------------------------------------------------------------------- | Payment Environment |-------------------------------------------------------------------------- | | This value determines the environment of the payment gateway. | Possible options: | "test" For testing and development. | "secure" For live payment. | */ 'env' => 'test', /* |-------------------------------------------------------------------------- | Default Account to use |-------------------------------------------------------------------------- | | The account to be used for Payment | */ 'default' => 'payubiz', /* |-------------------------------------------------------------------------- | All Accounts array |-------------------------------------------------------------------------- | | All the different accounts with its names | */ 'accounts' => [ /* |-------------------------------------------------------------------------- | Account Credentials |-------------------------------------------------------------------------- | | The account name and credentials which are found in the PayuBiz or | PayuMoney Console. | | key => (string) Merchant Key. | salt => (string) Merchant Salt. | money => (boolean) Is it a payumoney account? | auth => (string) Authorization Token if it is a payumoney account. | */ 'payubiz' => [ 'key' => 'gtKFFx', 'salt' => 'eCwWELxi', 'money' => false, 'auth' => null ], 'payumoney' => [ 'key' => 'JBZaLc', 'salt' => 'GQs7yium', 'money' => true, 'auth' => null ], ], /* |-------------------------------------------------------------------------- | Payu Endpoint. |-------------------------------------------------------------------------- | | Payment endpoint for Payu. | */ 'endpoint' => 'payu.in/_payment', /* |-------------------------------------------------------------------------- | Payment Store Driver |-------------------------------------------------------------------------- | | This is the config for storing the payment info. I recommend to use | database driver for storing then use it for your own use. | Options : "database", "session". | Note: If you use session driver make sure you are using secure = true | in config/session.php | */ 'driver' => 'session', /* |-------------------------------------------------------------------------- | Payu Payment Table |-------------------------------------------------------------------------- | | This is table that will be used for storing the payment information. | Run: php artisan vendor:publish to get the table in the migrations | directory. If you did change the table name then specify here. | */ 'table' => 'payu_payments', ];
Save
cmd:
run