/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
smodav
/
mpesa
/
tests
/
files
/
/home/techb158/ileadtechnology.com/vendor/smodav/mpesa/tests/files
mkdir
upload
Name
Size
Mode
Actions
.gitignore
6
0644
edit
dl
rm
mpesa.php
2634
0755
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/smodav/mpesa/tests/files/mpesa.php
(2634B)
<?php return [ /* |-------------------------------------------------------------------------- | Default Account |-------------------------------------------------------------------------- | | This is the default account to be used when none is specified. */ 'default' => 'test', /* |-------------------------------------------------------------------------- | Native File Cache Location |-------------------------------------------------------------------------- | | When using the Native Cache driver, this will be the relative directory | where the cache information will be stored. */ 'cache_location' => __DIR__ . '/cache', /* |-------------------------------------------------------------------------- | Accounts |-------------------------------------------------------------------------- | | These are the accounts that can be used with the package. You can configure | as many as needed. Two have been setup for you. | | Sandbox: Determines whether to use the sandbox, Possible values: sandbox | production | Initiator: This is the username used to authenticate the transaction request | LNMO: | paybill: Your paybill number | shortcode: Your business shortcode | passkey: The passkey for the paybill number | callback: Endpoint that will be be queried on completion or failure of the transaction. | */ 'accounts' => [ 'test' => [ 'sandbox' => true, 'key' => 'key1', 'secret' => 'secret1', 'initiator' => 'apitest363', 'id_validation_callback' => 'http://example.com/callback?secret=some_secret_hash_key', 'lnmo' => [ 'paybill' => 174379, 'shortcode' => 174379, 'passkey' => 'bfb279f9aa9bdbcf158e97dd71a467cd2e0c893059b10f78e6b72ada1ed2c919', 'callback' => 'http://example.com/callback?secret=some_secret_hash_key', ] ], 'production' => [ 'sandbox' => false, 'key' => 'key2', 'secret' => 'secret2', 'initiator' => 'apitest363', 'id_validation_callback' => 'http://example.com/callback?secret=some_secret_hash_key', 'lnmo' => [ 'paybill' => 174379, 'shortcode' => 174379, 'passkey' => 'bfb279f9aa9bdbcf158e97dd71a467cd2e0c893059b10f78e6b72ada1ed2c919', 'callback' => 'http://example.com/callback?secret=some_secret_hash_key', ] ], ], ];
Save
cmd:
run