arkitecht/fedex-laravel
Composer 安装命令:
composer require arkitecht/fedex-laravel
包简介
A service provider to integrate FedEx servces into your Laravel Project
README 文档
README
A service provider to integrate FedEx services into your Laravel Project
Quick Installation
You can install the package most easily through composer
Laravel 5.x
composer require arkitecht/fedex-laravel
Using it in your project
Add the service provider to your config/app.php
<?php ... 'providers' => [ /* * Laravel Framework Service Providers... */ //Illuminate\Foundation\Providers\ArtisanServiceProvider::class, Illuminate\Auth\AuthServiceProvider::class, Illuminate\Broadcasting\BroadcastServiceProvider::class, Illuminate\Bus\BusServiceProvider::class, ... Arkitecht\FedEx\Laravel\Providers\FedExServiceProvider::class, ], ?>
Add the Facade to your config/app.php
<?php ... 'aliases' => [ 'FedEx' => Arkitecht\FedEx\Laravel\Facades\FedEx::class ], ?>
Publish the config file
artisan vendor:publish
Set up your environment
Add values for the following setting keys in your .env or in config/fedex.php
- FEDEX_API_KEY - Your FedEx API Key
- FEDEX_API_PASSWORD - Your FedEx API Password
- FEDEX_ACCOUNT_NO - Your FedEx Account Number
- FEDEX_METER_NO - Your FedEx Meter Number
- FEDEX_USE_BETA - (Bool) Use the FedEx beta/test system instead of production
Example of Usage
Get FedEx Rates
<?php $rateRequest = FedEx::rateRequest(); $shipment = new \Arkitecht\FedEx\Structs\RequestedShipment(); $shipment->TotalWeight = new \Arkitecht\FedEx\Structs\Weight(\Arkitecht\FedEx\Enums\WeightUnits::VALUE_LB, $weight); $shipment->Shipper = new \Arkitecht\FedEx\Structs\Party(); $shipment->Shipper->Address = new \Arkitecht\FedEx\Structs\Address( $shipper->address, $shipper->city, $shipper->state, $shipper->zip, null, 'US'); $shipment->Recipient = new \Arkitecht\FedEx\Structs\Party(); $shipment->Recipient->Address = new \Arkitecht\FedEx\Structs\Address( $recipient->address, $recipient->city, $recipient->state, $recipient->zip, null, 'US'); $lineItem = new \Arkitecht\FedEx\Structs\RequestedPackageLineItem(); $lineItem->Weight = new \Arkitecht\FedEx\Structs\Weight(\Arkitecht\FedEx\Enums\WeightUnits::VALUE_LB, $weight); $lineItem->GroupPackageCount = 1; $shipment->PackageCount = 1; $shipment->RequestedPackageLineItems = [ $lineItem ]; $rateRequest->Version = FedEx::rateService()->version; $rateRequest->setRequestedShipment($shipment); $rate = FedEx::rateService(); $response = $rate->getRates($rateRequest); $rates = []; if ($response->HighestSeverity == 'SUCCESS') { foreach ($response->RateReplyDetails as $rate) { $rates[$rate->ServiceType] = $rate->RatedShipmentDetails[0]->ShipmentRateDetail->TotalNetCharge->Amount; } }
arkitecht/fedex-laravel 适用场景与选型建议
arkitecht/fedex-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.8k 次下载、GitHub Stars 达 7, 最近一次更新时间为 2016 年 01 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 arkitecht/fedex-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 arkitecht/fedex-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.8k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-01-06