shopbase / shopware-client

Shopware的API客户端

1.0.0 2019-03-03 20:40 UTC

This package is auto-updated.

Last update: 2024-08-29 04:37:25 UTC


README

Shopware-Client包定义了与Shopware-API连接的对象化层。

资源

示例

$connection = new \Shopbase\ShopwareClient\Connection(
    'myUsername',
    'myKey',
    'http://example.com',
    'api'
);

$client = new \Shopbase\ShopwareClient\Client($connection);

$result = $client->get(\Shopbase\ShopwareClient\Resources\Customer::class, 1)->toObject();

变更日志

[Master-Build]

  • 添加超时

[1.0]

  • 包的初始提交

Donate