承接 theshopdev/api-client 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

theshopdev/api-client

最新稳定版本:1.0.5

Composer 安装命令:

composer require theshopdev/api-client

包简介

theshop API client for Laravel.

README 文档

README

  1. composer require theshopdev/api-client
  2. Add \Theshop\ApiClient\ApiClientServiceProvider::class to config/app.php providers.
  3. Fill .env values:
THESHOP_API_KEY=
THESHOP_API_ENDPOINT=
THESHOP_CATALOG=

Usage

For single request:

$data = $this->getConnector()->send(new ProductListRequest(
    limit: 8,
    offset: 0
))->data;

For multiple async requests:

$data = $this->getConnector()->sendMultiple([
    'pages' => new ProductListRequest(
        limit: 8,
        offset: 0
    ),
    'categories' => new ProductListRequest(
        limit: 8,
        offset: 0
    )
]);

统计信息

  • 总下载量: 360
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 3
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-01-13