A TecDoc Webservice API client written in PHP.
The DTO classes are generated with xsd2php using the TecDoc SOAP XSD as input.
This project is licensed under the terms of the GNU Lesser General Public License v3.0.
composer require myrzan/tecdoc-php-client
<?php
use Myrzan\TecDocClient\Client;
use Myrzan\TecDocClient\Generated\Request\GetAmBrands;
$client = new Client('API_KEY', 'PROVIDER_ID');
$params = (new GetAmBrands())
->setLang('de')
->setArticleCountry('de');
$response = $client->getAmBrands($params);
$brands = $response->getData();
- Better tests
- Add status table for implemented API functions to README