forked from yabacon/paystack-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaystack.php
executable file
·33 lines (29 loc) · 908 Bytes
/
paystack.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
defined('BASEPATH') or exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Paystack Test Secret Key
|--------------------------------------------------------------------------
|
| Copy from Paystack Dashboard
|
*/
$config['paystack_key_test_secret'] = 'sk_test_xxx';
/*
|--------------------------------------------------------------------------
| Paystack Live Secret Key
|--------------------------------------------------------------------------
|
| Copy from Paystack Dashboard
|
*/
$config['paystack_key_live_secret'] = 'sk_live_xxx';
/*
|--------------------------------------------------------------------------
| Paystack Live Secret Key
|--------------------------------------------------------------------------
|
| Copy from Paystack Dashboard
|
*/
$config['paystack_test_mode'] = true;