erkineren / shopware-sdk
[Improved] LeadCommerce PHP SDK for the Shopware 5 REST API.
Requires
- php: >=5.5
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- phpunit/phpunit: ~4.8.21
- satooshi/php-coveralls: ~1.0.0
This package is auto-updated.
Last update: 2025-03-29 00:29:27 UTC
README
Edited PHP SDK for the Shopware 5 REST API.
This repository forked from leadcommerce/shopware-sdk and some arrangements have been made to make it available.
What does this library offer extra as opposed to the original?
- Fixed Bugs (eg. create entity methods exceptions, not found error etc.)
- Edited Lacking Features (eg. Order Entity, methods params)
- Improve Querying (eg. Filter Params)
Main Differences
-
Querying Responses
Query\Base
class. Query classes don't return a mapped entity from response anymore. They return itself. In order to get mapped entity like original library you can usegetEntity()
. Also you have 3 options more now :)getEntity()
Entity class of query. Returns mapped entity from json response.getEntities()
Array of entity classes of query. Returns mapped entities from json response.getRawResponse()
Raw string response returned from shopware rest api.getArrayResponse()
Json decoded Assosicative Array of raw json response returned from shopware rest api.
-
NotValidApiResponseException createEntityFromResponse method decodes the json response and resume own logic. If you query the order that not exist or if shopware rest api returns an any error (not json), program will have been failed. But you can catch this error now. If json decode process has error, thie exception is throwed.
Installing
composer require leadcommerce/shopware-sdk
composer require erkineren/shopware-sdk
Examples
<?php require 'vendor/autoload.php'; // Create a new client $client = new ShopwareClient('http://shopware.dev/api/', 'user', 'api_key'); /** * set custom options for guzzle * the official guzzle documentation contains a list of valid options (http://docs.guzzlephp.org/en/latest/request-options.html) */ //$client = new ShopwareClient('http://shopware.dev/api/', 'user', 'api_key', ['cert' => ['/path/server.pem']]); // Fetch all articles $articles = $client->getArticleQuery()->findAll(); // NEW FEATURE Fetch all articles with filters $articles = $client->getArticleQuery()->findAll( [ 'filter' => [ [ 'property' => 'number', 'value' => 'SW0001' ] ] ] ); // Fetch one article by id $article = $client->getArticleQuery()->findOne(1); // NEW FEATURE Fetch one article by articlenumber $article = $client->getArticleQuery()->findOne('SW0001', true); // Create an article $article = new Article(); $article->setName("John product doe"); $article->setDescription("Lorem ipsum"); // ... <- more setters are required $client->getArticleQuery()->create($article); // Update article $article->setName("John product doe"); $updatedArticle = $client->getArticleQuery()->update($article)->getEntity(); // Update multiple articles $articleOne = $client->getArticleQuery()->findOne(1)->getEntity(); $articleOne->setName("John product doe"); $articleTwo = $client->getArticleQuery()->findOne(2)->getEntity(); $articleTwo->setName("John product doe 2"); $articles = $client->getArticleQuery()->updateBatch([$articleOne, $articleTwo])->getArrayResponse(); // Delete an article $client->getArticleQuery()->delete(1); // Delete multiple articles at once $client->getArticleQuery()->deleteBatch([1, 2, 3]); ?>
Issues/Features proposals
Here is the issue tracker.
Contributing :-)
- Read the Code of Conduct
- Write some code
- Write some tests