dansmaculotte / mondialrelay-php
MondialRelay 网络服务的 PHP SDK
1.4.3
2022-06-27 08:43 UTC
Requires
- php: ^7.4||^8.0
- ext-soap: *
- laminas/laminas-soap: ^2.10
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.7
- phpunit/phpunit: ^9.5
README
该库旨在简化使用 Mondial Relay 网络服务
服务
安装
要求
- PHP 7.4
- Soap 扩展
您可以通过 composer 安装此包
composer require dansmaculotte/mondialrelay-php
使用
查找取货点
use DansMaCulotte\MondialRelay\DeliveryChoice; $delivery = new DeliveryChoice( [ 'site_id' => MONDIAL_RELAY_SITE_ID, 'site_key' => MONDIAL_RELAY_SITE_KEY, ] ); $result = $delivery->findPickupPoints('FR', '75001', 'FR'); print_r($result);
通过代码查找取货点
use DansMaCulotte\MondialRelay\DeliveryChoice; $delivery = new DeliveryChoice( [ 'site_id' => MONDIAL_RELAY_SITE_ID, 'site_key' => MONDIAL_RELAY_SITE_KEY, ] ); $result = $delivery->findPickupPointByCode('FR', '062049'); print_r($result);
许可证
MIT 许可证 (MIT)。有关更多信息,请参阅许可证文件。