PHP Classes

File: src/config/webshipper.php

Recommend this page to a friend!
  Classes of Stefan Ninic   Laravel WebShipper   src/config/webshipper.php   Download  
File: src/config/webshipper.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel WebShipper
Manage e-commerce orders using Webshipper API
Author: By
Last change: Optimized code, more SOLID like, removed version 1 of Webshipper support
Date: 12 hours ago
Size: 285 bytes
 

Contents

Class file image Download
<?php

return [
   
'username' => env( 'WEBSHIPPER_USERNAME' ),
   
'email' => env('WEBSHIPPER_EMAIL'),
   
'password' => env('WEBSHIPPER_PASSWORD'),
   
'token' => env( 'WEBSHIPPER_TOKEN' ),
   
'user_agent' => env('WEBSHIPPER_USER_AGENT', 'Rackbeat integration [email protected]'),
];