定制 smart-dato/php-olc-sdk 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

smart-dato/php-olc-sdk

最新稳定版本:0.0.2

Composer 安装命令:

composer require smart-dato/php-olc-sdk

包简介

PHP OLC SDK with saloon

README 文档

README

Latest Version on Packagist Tests Total Downloads

This PHP package provides a clean and efficient integration of the OLC v2 API, a logistics platform API, enabling seamless communication with OLC's services. Built for modern PHP applications needing to interface with OLC for shipment tracking, shipment processing, and other logistics operations.

Installation

You can install the package via composer:

composer require smart-dato/php-olc-sdk

Usage

$connector = new OlcConnector(
    url: 'https://olc.test/',
    token: '...',
);

$response = $connector->send(
    new CreateShipmentRequest(
        new ShipmentObject(
            shipmentType: 'PARCEL',
            shippingService: 'EC',
            pickupAddress: new AddressObject(
                warehouse: 'WH_1'
            ),
            deliveryAddress: new AddressObject(
                personName: "John Doe",
                companyName: 'Acme Inc.',
                street: '123 Main St',
                city: 'Anytown',
                zipcode: '12345',
                countryCode: 'DE',
            ),
            parcels: (new ParcelObjectCollection)
                ->add(new ParcelObject(
                    weight: 2.5, height: 10, length: 10, width: 10,
                ))
                ->add(new ParcelObject(
                    weight: 1.23
                ))
        )
    )
);

$response = $connector->send(
    new GetShipmentLabelRequest(
        value: 'OLS000000000001'
    )
);


$response = $connector->send(
    new GetShipmentReturnLabelRequest(
        value: 'OLS000000000001'
    )
);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-04-18