Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imanilchaudhari/yii2-shopping-cart
A shopping cart extension for Yii2 applications.
https://github.com/imanilchaudhari/yii2-shopping-cart
Last synced: about 2 months ago
JSON representation
A shopping cart extension for Yii2 applications.
- Host: GitHub
- URL: https://github.com/imanilchaudhari/yii2-shopping-cart
- Owner: imanilchaudhari
- License: mit
- Created: 2013-12-07T17:24:00.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-04-08T05:49:09.000Z (over 6 years ago)
- Last Synced: 2024-04-21T15:39:37.077Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- License: LICENSE
Awesome Lists containing this project
README
# Yii2-shopping-cart is extention for Yii Framework 2.0
## Installation
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).Either run
```
php composer.phar require "imanilchaudhari/yii2-shopping-cart" "dev-master"
```
or add```json
"imanilchaudhari/yii2-shopping-cart": "dev-master"
```to the require section of your application's `composer.json` file.
## Usage Example
```php
[
'components' => [
'shoppingCart' => [
'class' => 'imanilchaudhari\ShoppingCart\Cart'
]
]
]
```