All Projects → ptondereau → Laravel-UPS-Api

ptondereau / Laravel-UPS-Api

Licence: MIT license
A small Laravel's wrapper for the PHP UPS API library

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Laravel-UPS-Api

tracking-number-validation
A simple way to validate tracking number for the following couriers.
Stars: ✭ 22 (-24.14%)
Mutual labels:  ups
shippo-csharp-client
Shipping API C# library (USPS, FedEx, UPS and more)
Stars: ✭ 52 (+79.31%)
Mutual labels:  ups
roulier
API for package delivery
Stars: ✭ 18 (-37.93%)
Mutual labels:  ups
ShippingRates
.NET wrapper to UPS, FedEx, USPS and DHL shipping rates APIs
Stars: ✭ 23 (-20.69%)
Mutual labels:  ups
php-tracking-urls
Converts package tracking numbers into URLs (UPS, FedEx, USPS, and more)
Stars: ✭ 47 (+62.07%)
Mutual labels:  ups
ATtiny13-TinyUPS
Uninterruptible Power Supply
Stars: ✭ 92 (+217.24%)
Mutual labels:  ups
python-nut2
Communicate with Network UPS Tools servers from Python.
Stars: ✭ 30 (+3.45%)
Mutual labels:  ups
utility-scripts-for-freenas-and-vmware-esxi
All-In-One utility scripts for FreeNAS and VMware ESXi
Stars: ✭ 59 (+103.45%)
Mutual labels:  ups
ups-telegraf
Get data from USB-connected UPS with Telegraf
Stars: ✭ 21 (-27.59%)
Mutual labels:  ups
ntUPSd
Network UPS Tools upsd Compatible Server for Windows
Stars: ✭ 17 (-41.38%)
Mutual labels:  ups

Laravel UPS Api

For Laravel 6, 7, 8 and 9

Build Status StyleCI Status Software License Packagist Downloads Latest Version

Laravel UPS Api was created by, and is maintained by Pierre Tondereau, and PHP UPS Api was created by, and is maintained by Gabriel Bull at PHP UPS API.

Installation

To get the latest version of Laravel UPS Api, simply require the project using Composer:

$ composer require ptondereau/laravel-ups-api

Instead, you may of course manually update your require block and run composer update if you so choose:

{
    "require": {
        "ptondereau/laravel-ups-api": "^1.0"
    }
}

Once Laravel UPS Api is installed, you need to register the service provider. Open up config/app.php and add the following to the providers key.

  • 'Ptondereau\LaravelUpsApi\UpsApiServiceProvider'

You can register the all or some Ups facade in the aliases key of your config/app.php file if you like.

  • 'UpsAddressValidator' => 'Ptondereau\LaravelUpsApi\Facades\UpsAddressValidator'
  • 'UpsLocator' => 'Ptondereau\LaravelUpsApi\Facades\UpsLocator'
  • 'UpsQuantumView' => 'Ptondereau\LaravelUpsApi\Facades\UpsQuantumView'
  • 'UpsRate' => 'Ptondereau\LaravelUpsApi\Facades\UpsRate'
  • 'UpsTimeInTransit' => 'Ptondereau\LaravelUpsApi\Facades\UpsTimeInTransit'
  • 'UpsTracking' => 'Ptondereau\LaravelUpsApi\Facades\UpsTracking'
  • 'UpsTradeability' => 'Ptondereau\LaravelUpsApi\Facades\UpsTradeability'
  • 'UpsShipping' => 'Ptondereau\LaravelUpsApi\Facades\UpsShipping'
  • 'UpsRateInTransit' => 'Ptondereau\LaravelUpsApi\Facades\UpsRateInTransit'

Configuration

Laravel UPS Api requires connection configuration.

To get started, you'll need to publish all vendor assets:

$ php artisan vendor:publish --provider="Ptondereau\LaravelUpsApi\UpsApiServiceProvider"

This will create a config/ups.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.

You also need to add env variables into your .env with your credentials:

UPS_ACCESS_KEY=key
UPS_USER_ID=userId
UPS_PASSWORD=password
UPS_SANDBOX=true

Usage

This package only inject and provide Facades for each class of PHP UPS API. You just have to read its documentation.

Further Information

There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package.

Security

If you discover a security vulnerability within this package, please send an e-mail to Pierre Tondereau at [email protected]. All security vulnerabilities will be promptly addressed.

License

Laravel Ups Api is licensed under The MIT License (MIT).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].