File: /home/jairicem/bunkerltd.com/app/config/payment_gateways.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Sandbox / Test Mode
* -------------------------
* TRUE means you'll be hitting PayPal's sandbox /Stripe test mode. FALSE means you'll be hitting the live servers.
*/
$config['TestMode'] = FALSE;
/* ***************** Paypal Settings ***************** */
/*
* PayPal API Version
* ------------------
* The library is currently using PayPal API version 98.0.
* You may adjust this value here and then pass it into the PayPal object when you create it within your scripts to override if necessary.
*/
$config['APIVersion'] = '98.0';
/*
* PayPal Gateway API Credentials
* ------------------------------
* These are your PayPal API credentials for working with the PayPal gateway directly.
* These are used any time you're using the parent PayPal class within the library.
*
* We're using shorthand if/else statements here to set both Sandbox and Production values.
* Your sandbox values go on the left and your live values go on the right.
*
* You may obtain these credentials by logging into the following with your PayPal account: https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run
*/
$config['APIUsername'] = '';
$config['APIPassword'] = '';
$config['APISignature'] = '';
/* ***************** Stripe Keys ***************** */
/*
* Stripe API Keys
* ------------------
* You may obtain these by visiting account settings link and then API keys at https://dashboard.stripe.com/login
*/
$config['stripe_secret_key'] = '';
$config['stripe_publishable_key'] = '';
/* ***************** Authorize.net ***************** */
/*
* Authorize.net API Keys
* ----------------------
* You may obtain these by visiting account settings link and then API keys at https://authorize.net/
*/
$config['authorize'] = array(
'api_login_id' => '',
'api_transaction_key' => '',
'api_url' => ($config['TestMode'] ? 'https://test.authorize.net/gateway/transact.dll' : 'https://secure.authorize.net/gateway/transact.dll')
);