Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 890 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 890 Bytes

Shopware Client

The Shopware-Client package defines an object-oriented layer for connections with Shopware-API.

Resources

Examples

$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();

Changelog

[Master-Build]

  • Added timeout

[1.0]

  • Initial commit of package

Donate