PHP Classes

File: config/authorizenet.php

Recommend this page to a friend!
  Packages of Jacobo Cantorna Cigarrán   Laravel AuthorizeNet   config/authorizenet.php   Download  
File: config/authorizenet.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: Laravel AuthorizeNet
Process payments using the Authorize.Net gateway
Author: By
Last change:
Date: 5 months ago
Size: 1,689 bytes
 

Contents

Class file image Download
<?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')),
];