ydg/meituan-union-sdk

meituan union sdk

Installs: 2 146

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ydg/meituan-union-sdk

v1.0.0 2023-04-25 02:53 UTC

This package is auto-updated.

Last update: 2025-10-25 08:09:49 UTC


README

union.meituan.com

Install the latest version with

$ composer require ydg/meituan-union-sdk"
<?php

use Ydg\MeituanUnionSdk\Meituan;

$app = new Meituan([
    'uid' => 'your uid',
    'appkey' => 'your appkey',
    'sign_secret' => 'your sign_secret',
]);
$app->api->orderList([
    'businessLine' => 2,
    'startTime' => time() - 86400,
    'endTime' => time(),
    'page' => 1,
    'limit' => 1,
    'queryTimeType' => 1,
]);