A simple cart

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/simple-cart/cart

2.1.0 2020-11-29 14:54 UTC

This package is auto-updated.

Last update: 2025-12-29 03:13:36 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)