jszgjsj / laravel-doudian
抖音小店开放平台SDK
v1.1
2023-01-31 07:06 UTC
Requires
- php: >=7.2
- illuminate/support: >=6.0
Requires (Dev)
- orchestra/testbench: >=4.0
- phpunit/phpunit: ^8.0
README
#目前只开放了订单和退费相关SDK,包括订单(order)和售后服务(AfterSale)
安装
composer require "jszgjsj/laravel-doudian"
配置
- 创建配置文件:
php artisan vendor:publish --provider="Oneself\DouDian\DouDianServiceProvider"
- 可选,添加别名
Oneself\DouDian\DouDianServiceProvider::class
- 修改
config/doudian.php
中的相关配置。
使用
use Oneself\DouDian\DouDian; $doudian = new DouDian(config('doudian.default'));# 支持多开放平台切换 $doudian->setShopId('店铺ID')->order->orderDetail(["shop_order_id"=>'店铺订单号']);