FedEx API Wrapper for Laravel 8+

1.0.2 2022-02-18 13:43 UTC

This package is auto-updated.

Last update: 2024-04-12 01:46:05 UTC


README

Integrate FedEx web services with your Laravel 8 or higher app. Early iterations of this package will focus on FedEx Office services like printing.

How To Use

This package requires that you have a FedEx developer account, complete with approved API keys.

Assuming that you have received fully activated and approved API credential from FedEx, add the values to your projects .env file:

FEDEX_KEY=
FEDEX_ACCOUNT_NUMBER=
FEDEX_METER_NUMBER=
FEDEX_OFFICE_INTEGRATOR_ID=
FEDEX_CLIENT_PRODUCT_ID=
FEDEX_CLIENT_PRODUCT_VERSION=

Use your test credentials in your local and test environments, being careful only to use your live credentials on production systems.

Publishing Assets, Configuration

php artisan vendor:publish --tag=public --force

Linting and Testing

composer test:unit # Runs PHPUnit
composer lint # Runs php-cs-fixer to fix your coding style
composer test # Runs lint and then test:unit