first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
/**
* Plugin Family Id: dangoodman/wc-weight-based-shipping
* Plugin Name: WooCommerce Weight Based Shipping
* Plugin URI: https://wordpress.org/plugins/weight-based-shipping-for-woocommerce/
* Description: Simple yet flexible shipping method for WooCommerce.
* Version: 5.3.2.2
* Author: weightbasedshipping.com
* Author URI: https://weightbasedshipping.com
* Requires PHP: 5.3
* Requires at least: 4.0
* Tested up to: 5.3
* WC requires at least: 2.3
* WC tested up to: 3.8
*/
if (!class_exists('WbsVendors_DgmWpPluginBootstrapGuard', false)) {
require_once(dirname(__FILE__).'/server/vendor/dangoodman/wp-plugin-bootstrap-guard/DgmWpPluginBootstrapGuard.php');
}
WbsVendors_DgmWpPluginBootstrapGuard::checkPrerequisitesAndBootstrap(
'WooCommerce Weight Based Shipping',
'5.3', '4.0', '2.3',
dirname(__FILE__).'/bootstrap.php'
);