Try and Buy
Try for free
You can install and try the Kart plugin for free on your local host development setup. Once you put your code online, you need to buy and register a license for the Kart plugin.
Buy when going online
The Kart plugin requires a license for staging and production environments. You can buy a license here. The plugin will check your license key with a license server once and permanently activate the license. Without a license, the plugin will limit certain features.
While you could hardcode the license key in your config file, the recommended method is to use a .env
file. Consider using the dotenv plugin.
KART_LICENSE_KEY=your-license-key
<?php
return [
'bnomei.kart.license' => fn() => env('KART_LICENSE_KEY'),
// other options
];
Staging Servers
The Kart plugin will perform a license check on all servers besides localhost. You can NOT use it on staging servers without a registered license, but you may use the same license for the staging and production environments.
Please keep in mind that you need to purchase one license per production URL as stated in the Kart License.