gennadyx/php-shop-logistics.ru-api

php-shop-logistics.ru-api composer package

0.1.2 2017-10-05 20:03 UTC

This package is not auto-updated.

Last update: 2024-04-09 21:19:29 UTC


README

Latest Version on Packagist Software License Build Status Total Downloads

Coverage Status Sensiolabs_Medal Quality Score

##php-shop-logistics.ru-api PHP oop wrapper for shop-logistics.ru remote functions

Install

Via Composer

$ composer require gennadyx/php-shop-logistics.ru-api

Usage

use Gennadyx\ShopLogisticsRu\ApiClientBuilder;
use Gennadyx\ShopLogisticsRu\Environment;
use Gennadyx\ShopLogisticsRu\Api\Dictionary;
use Http\Message\MessageFactory\DiactorosMessageFactory;
use Http\Message\StreamFactory\DiactorosStreamFactory;

$client = ApiClientBuilder::create()
    ->withRequestFactory(new DiactorosMessageFactory())
    ->withStreamFactory(new DiactorosStreamFactory())
    ->withEncoder(function ($data) {
        $xml = '';
        //your logic here
        return $xml;
    })
    ->withEnvironment(Environment::PROD())
    ->withKey('your_key')
    ->build();

//or just build with default parameters
$client = ApiClientBuilder::create()->build();

/** @var Dictionary $dictionary */
$dictionary = $client->api('dictionary');

//call remote function
$cities = $dictionary->getCities();
//or
$states = $client->dictionary->getStates();//array

//if any error (http exception or other)
$metro = $client->dictionary->getMetro();
//$metro instance of \Gennadyx\ShopLogisticsRu\Response\Error with error code

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email dev@gennadyx.tech instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.