gdinko/dynamicexpress
Composer 安装命令:
composer require gdinko/dynamicexpress
包简介
Laravel Dynamic Express API Wrapper
README 文档
README
Laravel DynamicExpress API Wrapper
DynamicExpress API Documentation
Installation
You can install the package via composer:
composer require gdinko/dynamicexpress
If you plan to use database for storing nomenclatures:
php artisan migrate
If you need to export configuration file:
php artisan vendor:publish --tag=dynamicexpress-config
If you need to export migrations:
php artisan vendor:publish --tag=dynamicexpress-migrations
If you need to export models:
php artisan vendor:publish --tag=dynamicexpress-models
If you need to export commands:
php artisan vendor:publish --tag=dynamicexpress-commands
Configuration
DYNAMICEXPRESS_API_USER=
DYNAMICEXPRESS_API_PASS=
DYNAMICEXPRESS_API_WSDL= #default = https://system.dynamicexpress.eu/schema.wsdl
Usage
Runtime Setup
DynamicExpress::setAccount('user', 'pass'); DynamicExpress::addAccountToStore('AccountUser', 'AccountPass'); DynamicExpress::getAccountFromStore('AccountUser'); DynamicExpress::setAccountFromStore('AccountUser');
Multiple Account Support In AppServiceProvider add accounts in boot method
public function boot() { DynamicExpress::addAccountToStore( 'AccountUser', 'AccountPass' ); DynamicExpress::addAccountToStore( 'AccountUser_XXX', 'AccountPass_XXX' ); }
Commands
#sync countries with database (use -h to view options) php artisan dynamic-express:sync-countries #sync cities with database (use -h to view options) php artisan dynamic-express:sync-cities #sync offices with database (use -h to view options) php artisan dynamic-express:sync-offices #create cities map with other carriers in database (use -h to view options) php artisan dynamic-express:map-cities #sync all nomenclatures with database (use -h to view options) php artisan dynamic-express:sync-all #get payments (use -h to view options) php artisan dynamic-express:get-payments #get dynamic express api status (use -h to view options) php artisan dynamic-express:api-status #track parcels (use -h to view options) php artisan dynamic-express:track
Models
CarrierDynamicExpressCountry CarrierDynamicExpressCity CarrierDynamicExpressOffice CarrierDynamicExpressPayment CarrierDynamicExpressApiStatus CarrierDynamicExpressTracking
Events
CarrierDynamicExpressTrackingEvent CarrierDynamicExpressPaymentEvent
Parcels Tracking
- Subscribe to tracking event, you will recieve last tracking info, if tracking command is schduled
Event::listen(function (CarrierDynamicExpressTrackingEvent $event) { echo $event->account; dd($event->tracking); });
- Before use of tracking command you need to create your own command and define setUp method
php artisan make:command TrackCarrierDynamicExpress
- In app/Console/Commands/TrackCarrierDynamicExpress define your logic for parcels to be tracked
use Gdinko\DynamicExpress\Commands\TrackCarrierDynamicExpressBase; class TrackCarrierDynamicExpressSetup extends TrackCarrierDynamicExpressBase { protected function setup() { //define parcel selection logic here // $this->parcels = []; } }
- Use the command
php artisan dynamic-express:track
Examples
Calculate price
$data = [ // value is taken with getServices Method. Here 1 is -> // -> "Бързи градски услуги" (fast urban services) 'service' => 1, // value is taken with getSubServices Method. -> // -> Here 18 is "48 часа икономична" (48h economical) 'subservice' => 18, // 0(zero) or 1 (1 if there will be fixed delivery, 0 if not) 'fix_chas' => 0, // 0(zero) or 1 (1 if there will be return reciept, 0 if not) 'return_receipt' => 0, // 0(zero) or 1 (1 if there will be return document, 0 if not) 'return_doc' => 0, // COD(cash on delivery). 0(zero) if there is no COD. -> // -> USE "."(dot) for decimals! 'nal_platej' => 50, // Insurance Value. 0(zero) if there is no insurance. -> // -> USE "."(dot) for decimals! 'zastrahovka' => 50, // Weigth in kg. CAN'T be 0(zero). Use "."(dot) for decimals. 'teglo' => 2.5, // ID of the country(ISO standart). -> // -> Required only for international delivery 'country_b' => 100, ]; $priceData = DynamicExpress::calculate($data); dd($priceData);
You can use all methods from the WDSL Schema Like this:
DynamicExpress::getMyObjectInfo(); DynamicExpress::getMyObjects(); DynamicExpress::getOfficesCity(); DynamicExpress::getOfficesCord(100); DynamicExpress::getSoapCouriers(); //and so on , see the documentation
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email dinko359@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
gdinko/dynamicexpress 适用场景与选型建议
gdinko/dynamicexpress 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 930 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 05 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「gdinko」 「dynamicexpress」 「dynamicexpress laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 gdinko/dynamicexpress 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 gdinko/dynamicexpress 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 gdinko/dynamicexpress 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
统计信息
- 总下载量: 930
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-10