exactsports / fedex
FedEx API Wrapper for Laravel 8+
1.0.2
2022-02-18 13:43 UTC
Requires
- php: ^8.0|^8.1
- guzzlehttp/guzzle: ^7.4
- illuminate/support: ^8.0
- phpseclib/phpseclib: ~3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.4
- orchestra/testbench: ^6.0
This package is auto-updated.
Last update: 2024-10-12 03:04:43 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