zzm/third-api

快速调用第三方Api

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/zzm/third-api

1.0.1 2023-10-14 09:02 UTC

This package is auto-updated.

Last update: 2025-10-14 13:27:23 UTC


README

laravel 配置文件发布

php artisan vendor:publish --tag=third-api

微客API示例

#非laravel项目
$config = [
    'app_key' => '',
    'app_secret' => '',
];
$Power = new \SMG\ThirdApi\WeiKe\Rest\Power($config);

#laravel项目(需要发布配置文件后配置)
$Power = new \SMG\ThirdApi\WeiKe\Rest\Power();

#电费充值
$params = [];
$Power->pushOrder($params);

#xxx