codeboxr/pathao-courier
Composer 安装命令:
composer require codeboxr/pathao-courier
包简介
Bangladeshi Pathao courier service api package
README 文档
README
Pathao Courier Banagladesh
This is a Laravel/PHP package for Pathao BD Courier System. This package can be used in laravel or without laravel/php projects. You can use this package for headless/rest implementation as well as blade or regular mode development. We created this package while working for a project and thought to made it release for all so that it helps. This package is available as regular php composer package.
Features
- Fetch Pathao delivery/store city list
- Fetch Pathao delivery/store zone list
- Fetch Pathao delivery/store area list
- Create pickup store
- Fetch pickup store list
- Create parcel
- Fetch Parcel Details
Requirements
- PHP >=7.4
- Laravel >= 6
Installation
composer require codeboxr/pathao-courier
vendor publish (config)
php artisan vendor:publish --provider="Codeboxr\PathaoCourier\PathaoCourierServiceProvider"
After publish config file setup your credential. you can see this in your config directory pathao.php file
"sandbox" => env("PATHAO_SANDBOX", false), // for sandbox mode use true
"client_id" => env("PATHAO_CLIENT_ID", ""),
"client_secret" => env("PATHAO_CLIENT_SECRET", ""),
"username" => env("PATHAO_USERNAME", ""),
"password" => env("PATHAO_PASSWORD", "")
Set .env configuration
PATHAO_SANDBOX=true // for production mode use false
PATHAO_CLIENT_ID=""
PATHAO_CLIENT_SECRET=""
PATHAO_USERNAME=""
PATHAO_PASSWORD=""
Usage
1. Get pathao delivery city list
use Codeboxr\PathaoCourier\Facade\PathaoCourier
return PathaoCourier::area()->city();
2. To get pathao zone list
use Codeboxr\PathaoCourier\Facade\PathaoCourier
return PathaoCourier::area()->zone($cityId); // City ID
3. To get pathao delivery area list
use Codeboxr\PathaoCourier\Facade\PathaoCourier
return PathaoCourier::area()->area($zoneId); // Zone ID
4. Create new store
use Codeboxr\PathaoCourier\Facade\PathaoCourier
return PathaoCourier::store()
->create([
"name" => "", // Store Name
"contact_name" => "", // Store contact person name
"contact_number" => "", // Contact person number
"address" => "", // Store address
"secondary_contact" => "", // Contact person secondary number not mandatory
"city_id" => "", // Find in city method
"zone_id" => "", // Find in zone method
"area_id" => "", // Find in Area method
]);
5. Get Store List
use Codeboxr\PathaoCourier\Facade\PathaoCourier
return PathaoCourier::store()->list();
6. Create new parcel
use Codeboxr\PathaoCourier\Facade\PathaoCourier
return PathaoCourier::order()
->create([
"store_id" => "", // Find in store list,
"merchant_order_id" => "", // Unique order id
"recipient_name" => "", // Customer name
"recipient_phone" => "", // Customer phone
"recipient_address" => "", // Customer address
"recipient_city" => "", // Find in city method
"recipient_zone" => "", // Find in zone method
"recipient_area" => "", // Find in Area method
"delivery_type" => "", // 48 for normal delivery or 12 for on demand delivery
"item_type" => "", // 1 for document,
2 for parcel
"special_instruction" => "",
"item_quantity" => "", // item quantity
"item_weight" => "", // parcel weight
"amount_to_collect" => "", // amount to collect
"item_description" => "" // product details
]);
7. Get Order Details
use Codeboxr\PathaoCourier\Facade\PathaoCourier
return PathaoCourier::order()->orderDetails($consignmentId); // After successfully create order they given a consignment_id
Contributing
Contributions to the Pathao package are welcome. Please note the following guidelines before submitting your pull request.
- Follow PSR-4 coding standards.
- Read Pathao API documentations first
License
Pathao package is licensed under the MIT License.
Copyright 2022 Codeboxr
codeboxr/pathao-courier 适用场景与选型建议
codeboxr/pathao-courier 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.45k 次下载、GitHub Stars 达 28, 最近一次更新时间为 2022 年 08 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 codeboxr/pathao-courier 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 codeboxr/pathao-courier 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.45k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 28
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-08-29