phpsa / sc-free-shipping
A free shipping module for Statamic's Simple commerce
Requires
- statamic/cms: ^3.0
Requires (Dev)
- orchestra/testbench: ^4.0|^5.0
- phpunit/phpunit: ^8.4|^9.0
This package is auto-updated.
Last update: 2024-10-29 06:00:06 UTC
README
A Simple Commerce shipping module to handle free shipping for orders over a set monetory value.
This repository contains the code for the shipping gateway. While the code is open-source, it's important to remember that you'll need to purchase a license before using this addon in production. Licenses cost $5 and can be purchased from the Statamic Marketplace.
Installation
Install via the Control Panel or via composer
composer require phpsa/sc-free-shipping
Configuration
Update the config/simple-commerce.php
file to add as a shipping method:
'shipping' => [ 'methods' => [ ... \Phpsa\ScFreeShipping\ShippingMethods\FreeShipping::class ], ],
Publish the Free Shipping configuration file, where you'll be able to update your shipping settings per site.
php artisan vendor:publish --provider="Phpsa\ScFreeShipping\ServiceProvider" --tag="config"
Security
If you discover any security related issues, please email vxdhost@gmail.com instead of using the issue tracker.