1. Go to this page and download the library: Download agoalofalife/cart 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/ */
agoalofalife / cart example snippets
$kernel = new \Cart\Kernel();
$kernel->bootstrapping();
$kernel->loadConfiguration(new \Cart\SourcesConfigurations\File(__DIR__ . '/config/cart.php'));
// Добавление товара в корзину
// id и user_id обязательные поля, так как это индексы по которым происходят другие операции
// вы в праве добавить больше данных..
$storage->add(['id' => 3, 'user_id' => 1]);
// очистить корзину передав user_id
$storage->clear(1);
// изменить кол -во
$storage->change(['id' => 5, 'user_id' => 1, 'count' => 0])
// удалить конкретный товар из корзины
$storage->remove(['id' => 2, 'user_id' => 1]);
// Получить список всех товаров по user_id
$storage->get(1);