-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsimple-sales-tax.php
54 lines (49 loc) · 1.65 KB
/
simple-sales-tax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* Plugin Name: Simple Sales Tax
* Description: Harness the power of TaxCloud to accurately calculate sales tax for your WooCommerce store.
* Author: TaxCloud
* Author URI: https://taxcloud.com
* GitHub Plugin URI: https://github.com/bporcelli/simplesalestax
* Version: 8.2.1
* Text Domain: simple-sales-tax
* Domain Path: /languages/
*
* Requires at least: 4.5.0
* Tested up to: 6.6.0
* WC requires at least: 6.9.0
* WC tested up to: 9.3.1
*
* @category Plugin
* @copyright Copyright © 2024 The Federal Tax Authority, LLC
* @author Brett Porcelli
* @license GPL2
*
* Simple Sales Tax is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 2 of the License, or any later
* version.
*
* Simple Sales Tax is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* Simple Sales Tax. If not, see http://www.gnu.org/licenses/gpl-2.0.txt.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
require __DIR__ . '/includes/vendor/autoload.php';
require __DIR__ . '/includes/class-simplesalestax.php';
/**
* Get the singleton SST instance.
*
* @return SimpleSalesTax
* @since 4.2
*/
function SST() {
return SimpleSalesTax::instance();
}
SST();