1. Go to this page and download the library: Download brightweb/ecommerce library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
brightweb / ecommerce example snippets
'mypayment_options' => [
'enable_stripe' => false, // Stripe not yet implemented
'enable_razorpay' => false, // Razorpay not yet implemented
'enable_paypal' => true, // To disable PayPal, set it to false
'enable_paystack' => true, // To disable Paystack, set it to false
'enable_pay_on_delivery' => true, // To disable Pay on Delivery, set it to false
],
'currency' => [
'site_Currency' => '$',// here you can add your currency
],
'frontend_category_settings' => [
'show_top_categories' => true, // Show top categories, to disable it set it to false
'show_sidebar_category' => true, // Show sidebar categories, to disable it set it to false
],