PHP code example of christian71-stack / kaufland-php-client
1. Go to this page and download the library: Download christian71-stack/kaufland-php-client library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
christian71-stack / kaufland-php-client example snippets
$kaufland = new \ProductFlow\KauflandPhpClient\Kaufland(
$clientkey,
$secretkey,
(new Locale())->set(Locale::CS_CZ), // optional
(new Storefront())->set(Storefront::CZ)) // optional
new Client(...) // optional
);
$order_lists = $kaufland->orderUnit()->list();
composer