JVKart
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
application.config.php
.
Enabling it in your <?php
return array(
'modules' => array(
// ...
'JVKart',
),
// ...
);