PHPackages                             moltin/cart - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. moltin/cart

ActiveLibrary[API Development](/categories/api)

moltin/cart
===========

Shopping cart package

1.1.0(8y ago)10948.7k↓50%61[9 issues](https://github.com/moltin/cart/issues)[3 PRs](https://github.com/moltin/cart/pulls)2proprietaryPHPPHP &gt;=5.3.0

Since Mar 7Pushed 8y ago21 watchersCompare

[ Source](https://github.com/moltin/cart)[ Packagist](https://packagist.org/packages/moltin/cart)[ RSS](/packages/moltin-cart/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (2)

Shopping Cart Package
=====================

[](#shopping-cart-package)

[![Build Status](https://camo.githubusercontent.com/18d0cf71355140742ea9f28247a6c58683360df2d025547f6bd169135b6c822b/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f6d6f6c74696e2f636172742e706e67)](http://travis-ci.org/moltin/cart)

- [Website](http://molt.in)
- [License](https://github.com/moltin/cart/master/LICENSE)
- Version: dev

The Moltin shopping cart composer package makes it easy to implement a shopping basket into your application and store the cart data using one of the numerous data stores provided. You can also inject your own data store if you would like your cart data to be stored elsewhere.

Installation
------------

[](#installation)

Download and install composer from `http://www.getcomposer.org/download`

Add the following to your project `composer.json` file

```
{
    "require": {
        "moltin/cart": "dev-master"
    }
}

```

When you're done just run `php composer.phar install` and the package is ready to be used.

Usage
-----

[](#usage)

Below is a basic usage guide for this package.

### Instantiating the cart

[](#instantiating-the-cart)

Before you begin, you will need to know which storage and identifier method you are going to use. The identifier is how you store which cart is for that user. So if you store your cart in the database, then you need a cookie (or some other way of storing an identifier) so we can link the user to a stored cart.

In this example we're going to use the cookie identifier and session for storage.

```
use Moltin\Cart\Cart;
use Moltin\Cart\Storage\Session;
use Moltin\Cart\Identifier\Cookie;

$cart = new Cart(new Session, new Cookie);
```

### Inserting items into the cart

[](#inserting-items-into-the-cart)

Inserting an item into the cart is easy. The required keys are id, name, price and quantity, although you can pass over any custom data that you like.

```
$cart->insert(array(
    'id'       => 'foo',
    'name'     => 'bar',
    'price'    => 100,
    'quantity' => 1
));
```

### Setting the tax rate for an item

[](#setting-the-tax-rate-for-an-item)

Another key you can pass to your insert method is 'tax'. This is a percentage which you would like to be added onto the price of the item.

In the below example we will use 20% for the tax rate.

```
$cart->insert(array(
    'id'       => 'foo',
    'name'     => 'bar',
    'price'    => 100,
    'quantity' => 1,
    'tax'      => 20
));
```

### Updating items in the cart

[](#updating-items-in-the-cart)

You can update items in your cart by updating any property on a cart item. For example, if you were within a cart loop then you can update a specific item using the below example.

```
foreach ($cart->contents() as $item) {
    $item->name = 'Foo';
    $item->quantity = 1;
}
```

### Removing cart items

[](#removing-cart-items)

You can remove any items in your cart by using the `remove()` method on any cart item.

```
foreach ($cart->contents() as $item) {
    $item->remove();
}
```

### Destroying/emptying the cart

[](#destroyingemptying-the-cart)

You can completely empty/destroy the cart by using the `destroy()` method.

```
$cart->destroy()
```

### Retrieve the cart contents

[](#retrieve-the-cart-contents)

You can loop the cart contents by using the following method

```
$cart->contents();
```

You can also return the cart items as an array by passing true as the first argument

```
$cart->contents(true);
```

### Retrieving the total items in the cart

[](#retrieving-the-total-items-in-the-cart)

```
$cart->totalItems();
```

By default this method will return all items in the cart as well as their quantities. You can pass `true`as the first argument to get all unique items.

```
$cart->totalItems(true);
```

### Retrieving the cart total

[](#retrieving-the-cart-total)

```
$cart->total();
```

By default the `total()` method will return the total value of the cart as a `float`, this will include any item taxes. If you want to retrieve the cart total without tax then you can do so by passing false to the `total()` method

```
$cart->total(false);
```

### Check if the cart has an item

[](#check-if-the-cart-has-an-item)

```
$cart->has($itemIdentifier);
```

### Retreive an item object by identifier

[](#retreive-an-item-object-by-identifier)

```
$cart->item($itemIdentifier);
```

Cart items
----------

[](#cart-items)

There are several features of the cart items that may also help when integrating your cart.

### Retrieving the total value of an item

[](#retrieving-the-total-value-of-an-item)

You can retrieve the total value of a specific cart item (including quantities) using the following method.

```
$item->total();
```

By default, this method will return the total value of the item plus tax. So if you had a product which costs 100, with a quantity of 2 and a tax rate of 20% then the total returned by this method would be 240.

You can also get the total minus tax by passing false to the `total()` method.

```
$item->total(false);
```

This would return 200.

### Check if an item has options

[](#check-if-an-item-has-options)

You can check if a cart item has options by using the `hasOptions()` method.

```
if ($item->hasOptions()) {
    // We have options
}
```

### Remove an item from the cart

[](#remove-an-item-from-the-cart)

```
$item->remove();
```

### Output the item data as an array

[](#output-the-item-data-as-an-array)

```
$item->toArray();
```

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity44

Moderate usage in the ecosystem

Community26

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 98.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

3260d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a998c3c99f2ab63cb0535744d941499d064eba354b07d611c40aaaea9b28ee16?d=identicon)[moltin](/maintainers/moltin)

---

Top Contributors

[![chrisnharvey](https://avatars.githubusercontent.com/u/619298?v=4)](https://github.com/chrisnharvey "chrisnharvey (199 commits)")[![bloom-design](https://avatars.githubusercontent.com/u/5961169?v=4)](https://github.com/bloom-design "bloom-design (1 commits)")[![nethask](https://avatars.githubusercontent.com/u/4312591?v=4)](https://github.com/nethask "nethask (1 commits)")[![zot24](https://avatars.githubusercontent.com/u/678498?v=4)](https://github.com/zot24 "zot24 (1 commits)")

---

Tags

apicartmoltinshopping-cart

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/moltin-cart/health.svg)

```
[![Health](https://phpackages.com/badges/moltin-cart/health.svg)](https://phpackages.com/packages/moltin-cart)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
