<?php
return [
/*
|--------------------------------------------------------------------------
| Authorize.Net Login ID
|--------------------------------------------------------------------------
|
| Your Authorize.Net API Login ID. You can find this in the Merchant
| Interface under Settings > Security Settings > API Credentials & Keys.
|
*/
'login_id' => env('AUTHORIZE_NET_LOGIN_ID'),
/*
|--------------------------------------------------------------------------
| Authorize.Net Client Key
|--------------------------------------------------------------------------
|
| Your Authorize.Net Public Client Key. This is used for Accept.js
| integration to send payment data securely.
|
*/
'client_key' => env('AUTHORIZE_NET_CLIENT_KEY'),
/*
|--------------------------------------------------------------------------
| Authorize.Net Transaction Key
|--------------------------------------------------------------------------
|
| Your Authorize.Net Transaction Key. You can find this in the Merchant
| Interface under Settings > Security Settings > API Credentials & Keys.
|
*/
'transaction_key' => env('AUTHORIZE_NET_TRANSACTION_KEY'),
/*
|--------------------------------------------------------------------------
| Environment
|--------------------------------------------------------------------------
|
| Determines if the package should use the sandbox or production
| environment. If not set, it will use the app.env value.
|
*/
'environment' => env('AUTHORIZE_NET_ENVIRONMENT', env('APP_ENV', 'production')),
];
|