jaimevalasek / jv-kart
A generic module Shopping Cart for ZF2.
dev-master
2013-09-27 20:25 UTC
Requires
- php: >=5.3.3
- zendframework/zendframework: 2.*
This package is not auto-updated.
Last update: 2025-05-06 08:53:12 UTC
README
Create By: Jaime Marcelo Valasek
Module to create shopping cart
Installation
Download this module into the vendor folder of your project.
Enable the module in the file application.config.php. Add the module JVKart.
With composer
- Add this project in your composer.json:
"require": { "jaimevalasek/jv-kart": "dev-master" }
- Now tell composer to download JVKart by running the command:
php $ php composer.phar update
Enabling it in your application.config.php
.
<?php return array( 'modules' => array( // ... 'JVKart', ), // ... );