generated from rawilk/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathups.php
63 lines (58 loc) · 2.04 KB
/
ups.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
return [
/*
|--------------------------------------------------------------------------
| Credentials
|--------------------------------------------------------------------------
|
| Here are the credentials needed when making requests through the
| the UPS api.
|
*/
'access_key' => env('UPS_ACCESS_KEY'),
'user_id' => env('UPS_USER_ID'),
'password' => env('UPS_PASSWORD'),
'shipper_number' => env('UPS_SHIPPER_NUMBER'),
'negotiated_rates' => env('UPS_NEGOTIATED_RATES', false),
/*
|--------------------------------------------------------------------------
| Sandbox
|--------------------------------------------------------------------------
|
| Enabling "sandbox" mode instructs the package to send any api requests
| to the customer integrated environment (testing environment) instead
| of the production api, with the exception of the address validation
| api.
|
*/
'sandbox' => env('UPS_SANDBOX', true),
/*
|--------------------------------------------------------------------------
| Logging
|--------------------------------------------------------------------------
|
| Enable/Disable logging when requests are made and received
| through the UPS api.
|
*/
'logging' => env('UPS_LOGGING', false),
/*
|--------------------------------------------------------------------------
| Label Storage Disk
|--------------------------------------------------------------------------
|
| Enter the disk name to use for storing generated shipping labels.
|
*/
'label_storage_disk' => env('UPS_LABEL_DISK', 'default'),
/*
|--------------------------------------------------------------------------
| Rotate Stored Labels
|--------------------------------------------------------------------------
|
| Set to true to automatically rotate stored shipping labels to be
| stored vertically. Requires the Imagick extension.
|
*/
'rotate_stored_labels' => true,
];