mohamedali/laravel-shipping 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mohamedali/laravel-shipping

Composer 安装命令:

composer require mohamedali/laravel-shipping

包简介

Laravel package for shipping companies integrations (Aramex, Sally, SMSA)

README 文档

README

A flexible and extensible Laravel package for integrating multiple shipping providers like Aramex, SMSA, Sally, and others using a unified interface.

🚀 Purpose

The goal of this package is to provide a standardized way to handle shipping operations across different providers. It abstracts the complexity of API requests, data validation, and response handling, allowing you to switch or add shipping drivers with minimal effort.

📦 Installation

  1. Install the package via composer:

    composer require mohamedali/laravel-shipping:dev-main
  2. Register the service provider (if not using auto-discovery):

    Mohamedali\LaravelShipping\ShippingServiceProvider::class
  3. Publish the configuration and migrations:

    php artisan shipping:publish-config
    php artisan migrate

🛠 Commands

The package includes several Artisan commands to streamline development and setup:

1. shipping:publish-config

Publishes the shipping.php configuration file and package migrations.

  • Usage: php artisan shipping:publish-config
  • Options: --force to overwrite existing files.

2. make:shipping-driver {name}

Generates a new shipping driver and its associated payload class.

  • Usage: php artisan make:shipping-driver Fedex
  • What it does:
    • Creates a driver class in app/Shipping/Drivers/.
    • Creates a payload validation class in app/Shipping/Payloads/.
    • Automatically registers the new driver in config/shipping.php.

3. make:shipping-payload

An interactive command to generate a payload class pre-filled with example data for specific providers.

  • Usage: php artisan make:shipping-payload
  • Supported Providers: Aramex, SMSA, Sally.
  • What it does: Creates a class with a static data() method containing the required API structure, making it easy to test shipments immediately.

📖 Usage Guide

1. Basic Shipment

Resolve the shipping manager and choose your driver. We recommend using a Payload class to structure your data:

use Mohamedali\LaravelShipping\Services\ShippingManager;
use App\Shipping\Payloads\AramexOrderPayload;

$shipping = app(ShippingManager::class)->driver('aramex');

// Prepare payload data using the static data method
$payload = AramexOrderPayload::data($order);

$success = $shipping->processShipment($payload);

2. Attaching a Model (for)

You can link a shipment to any Eloquent model (e.g., Order, User). This automatically records the shipment details in the delivery_info table via a morph relationship.

$shipping->for($order)->processShipment($payload);

3. Success Callback (onSuccess)

Execute custom logic immediately after a successful shipment. The callback receives the model instance, the full API response, and the provider name.

$shipping->for($order)
    ->onSuccess(function ($model, $response, $provider) {
        $model->update(['status' => 'shipped']);
        Log::info("Order {$model->id} shipped via {$provider}");
    })
    ->processShipment($payload);

4. Retrieving Labels

Retrieve the latest successful label URL for a specific model and provider:

$labelUrl = $shipping->getLabel($order);

🏗 Architecture

  • ShippingManager: The entry point that resolves driver instances based on configuration.
  • BaseShippingService: The core abstract class that handles the lifecycle of a shipment (Validation -> Request -> Response Logging -> Callbacks).
  • Payload Classes: Responsible for validating the input data before it's sent to the API.
  • DeliveryInfo Model: Stores the history of shipments, linked to your application's models using polymorphic relationships.

mohamedali/laravel-shipping 适用场景与选型建议

mohamedali/laravel-shipping 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 24 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 mohamedali/laravel-shipping 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 mohamedali/laravel-shipping 我们能提供哪些服务?
定制开发 / 二次开发

基于 mohamedali/laravel-shipping 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 2
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 19
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-02-24