role-and-customer-based-pricing-for-woocommerce.php
1019 Bytes
<?php
use MeowCrew\RoleAndCustomerBasedPricing\RoleAndCustomerBasedPricingPlugin;
/**
*
* Plugin Name: Role and Customer Based Pricing for WooCommerce
* Plugin URI: https://meow-crew.com/role-and-customer-based-pricing-for-wooommerce
* Description: Use this plugin to create pricing rules based on user roles or individual pricing for various customers.
* * Version: 1.2.0
* Author: Meow Crew
* Author URI: https://meow-crew.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: role-and-customer-based-pricing-for-woocommerce
* Domain Path: /languages
*
* WC requires at least: 4.0
* WC tested up to: 6.9
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once 'license.php';
call_user_func( function () {
require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
( new RoleAndCustomerBasedPricingPlugin( __FILE__ ) )->run();
} );