All Projects → taxjar → taxjar-magento2-extension

taxjar / taxjar-magento2-extension

Licence: OSL-3.0 license
Magento 2 Sales Tax Extension by TaxJar

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Less
1899 projects

Projects that are alternatives of or similar to taxjar-magento2-extension

taxjar-woocommerce-plugin
WooCommerce Sales Tax Plugin by TaxJar
Stars: ✭ 26 (+13.04%)
Mutual labels:  ecommerce, tax, tax-rate, taxjar, sales-tax
taxjar.net
Sales Tax API Client for .NET / C#
Stars: ✭ 21 (-8.7%)
Mutual labels:  ecommerce, tax, tax-rate, taxjar, sales-tax
taxjar-php
Sales Tax API Client for PHP 5.5+
Stars: ✭ 66 (+186.96%)
Mutual labels:  ecommerce, tax, tax-rate, taxjar, sales-tax
blog
MageVision Blog
Stars: ✭ 23 (+0%)
Mutual labels:  ecommerce, magento, magento-2, magento2
module-dsu-client
No description or website provided.
Stars: ✭ 17 (-26.09%)
Mutual labels:  magento, magento-2, magento2
magento2
For any issues or questions please get in touch with us via [email protected]
Stars: ✭ 15 (-34.78%)
Mutual labels:  magento, magento-2, magento2
module-dsu
No description or website provided.
Stars: ✭ 18 (-21.74%)
Mutual labels:  magento, magento-2, magento2
AvaTax-REST-V2-Ruby-SDK
Sales Tax API SDK for Ruby and AvaTax REST
Stars: ✭ 34 (+47.83%)
Mutual labels:  tax, tax-rate, sales-tax
Mc Magento2
MailChimp for Magento 2. Syncs all data (subscriber, customers, orders, products) and enables marketing automation with email campaigns, automations, ads, postcards and more.
Stars: ✭ 115 (+400%)
Mutual labels:  ecommerce, magento, magento2
module-notifications
Notify the Magento 2 admin user about disabled caches or new customer reviews.
Stars: ✭ 20 (-13.04%)
Mutual labels:  magento, magento-2, magento2
centminmod-magento2
Magento 2.2.2 Install Guide For Centmin Mod Nginx LEMP Stacks
Stars: ✭ 16 (-30.43%)
Mutual labels:  magento, magento-2, magento2
module-blog-m22
Fixes for Blog on Magento 2.2.x
Stars: ✭ 21 (-8.7%)
Mutual labels:  magento, magento-2, magento2
magento2-guest-to-customer
Guest to Customer for Magento2 - Quickly and easily convert existing guest checkout customers to registered customers.
Stars: ✭ 66 (+186.96%)
Mutual labels:  magento, magento-2, magento2
module-conflict-detector
magefan.com/magento2-conflict-detector
Stars: ✭ 40 (+73.91%)
Mutual labels:  magento, magento-2, magento2
Importexportfree
Improve default Magento 2 Import / Export features - cron jobs, CSV , XML , JSON , Excel , mapping of any format, Google Sheet, data and price modification, improved speed and a lot more!
Stars: ✭ 160 (+595.65%)
Mutual labels:  ecommerce, magento, magento2
module-blog-sample-data
Sample data for Magento 2 blog extension
Stars: ✭ 15 (-34.78%)
Mutual labels:  magento, magento-2, magento2
magento-2-pronko-consulting-theme
Pronko Consulting Theme for Magento 2
Stars: ✭ 47 (+104.35%)
Mutual labels:  ecommerce, magento, magento2
module-login-as-customer
Allows admin to login as a customer (enter to customer account).
Stars: ✭ 104 (+352.17%)
Mutual labels:  magento, magento-2, magento2
Vue Storefront
The open-source frontend for any eCommerce. Built with a PWA and headless approach, using a modern JS stack. We have custom integrations with Magento, commercetools, Shopware and Shopify and total coverage is just a matter of time. The API approach also allows you to merge VSF with any third-party tool like CMS, payment gateways or analytics. Ne…
Stars: ✭ 9,111 (+39513.04%)
Mutual labels:  ecommerce, magento, magento2
Magento2
All Submissions you make to Magento Inc. ("Magento") through GitHub are subject to the following terms and conditions: (1) You grant Magento a perpetual, worldwide, non-exclusive, no charge, royalty free, irrevocable license under your applicable copyrights and patents to reproduce, prepare derivative works of, display, publically perform, subli…
Stars: ✭ 9,816 (+42578.26%)
Mutual labels:  ecommerce, magento, magento2

Magento 2 Sales Tax Extension by TaxJar

Simplify your sales tax with live checkout calculations and zip-based backup rates from TaxJar.

To get started, check out our M2 extension guide!

Getting Started

Download the extension as a ZIP file from this repository or install our module with Composer using the following command:

composer require taxjar/module-taxjar

If you're installing the extension manually, unzip the archive and upload the files to /app/code/Taxjar/SalesTax. After uploading, run the following Magento CLI commands:

bin/magento module:enable Taxjar_SalesTax --clear-static-content
bin/magento setup:upgrade
bin/magento setup:di:compile

These commands will enable the TaxJar extension, perform necessary database updates, and re-compile your Magento store. From there, you'll want to run through the pre-import checklist and set everything up using our extension guide).

Tests

To run our integration tests for checkout calculations, clone the repository into your local instance of Magento 2. You'll need an active TaxJar API token (preferably a test account) to run these tests.

git clone https://github.com/taxjar/taxjar-magento2-extension.git app/code/Taxjar/SalesTax

Backup or rename your existing phpunit.xml under dev/tests/integration. Copy the phpunit.xml file in the TaxJar module under app/code/Taxjar/SalesTax/Test/Integration:

cp app/code/Taxjar/SalesTax/Test/Integration/phpunit.xml dev/tests/integration/phpunit.xml

Rename install-config-mysql.php.dist to install-config-mysql.php under dev/tests/integration/etc. Make sure Magento has access to a MySQL database for running integration tests.

Copy Test/Integration/credentials.php.dist to credentials.php in the same directory and add your TaxJar API token:

cp app/code/Taxjar/SalesTax/Test/Integration/credentials.php.dist app/code/Taxjar/SalesTax/Test/Integration/credentials.php

Finally, run the TaxJar test suite using PHPUnit:

vendor/bin/phpunit -c ~/OSS/magento2/dev/tests/integration/phpunit.xml --testsuite “Taxjar”

Notice that the configuration flag should include the full path to phpunit.xml.

License

TaxJar's Magento 2 module is released under the Open Software License 3.0 (OSL-3.0).

Support

If you find a bug in our extension, open a new issue right here in GitHub. For general questions about TaxJar or specific issues with your store, please contact us after going through our extension guide.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].