A simple cart

Maintainers

Package info

github.com/tikoutare/simple-cart

pkg:composer/simple-cart/cart

Statistics

Installs: 18

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

2.1.0 2020-11-29 14:54 UTC

This package is auto-updated.

Last update: 2026-03-29 00:51:54 UTC


README

Installation

composer require simple-cart/cart

Example

$cart = new SimpleCart\Cart([
    new Acme\Product()
]);

//total number of items in the cart
$cart->count(); //or count($cart)