artisanry / tax-calculator
This package is abandoned and no longer maintained.
No replacement package was suggested.
Simple Tax Calculator for Laravel
3.2.0
2019-08-28 13:06 UTC
Requires
- php: ^7.2
- illuminate/database: ^5.8|^6.0
- illuminate/support: ^5.8|^6.0
- moneyphp/money: ^3.1
Requires (Dev)
- graham-campbell/testbench: ^5.0
- mockery/mockery: ^1.0
- phpunit/phpunit: ^8.2
README
Installation
Require this package, with Composer, in the root directory of your project.
$ composer require artisanry/tax-calculator
Configuration
Laravel Cookie Consent supports optional configuration.
To get started, you'll need to publish all vendor assets:
$ php artisan vendor:publish --provider="Artisanry\TaxCalculator\ServiceProvider"
This will create a config/tax-calculator.php
file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.
Usage
TaxCalculator::setAmount(100) ->setTaxRate(20) ->setCurrency('EUR') ->setLocale('DE') ->setDiscount(20); TaxCalculator::subtotal(); TaxCalculator::discount(); TaxCalculator::taxRate(); TaxCalculator::taxValue(); TaxCalculator::total();
Testing
$ phpunit
Security
If you discover a security vulnerability within this package, please send an e-mail to hello@basecode.sh. All security vulnerabilities will be promptly addressed.
Credits
This project exists thanks to all the people who contribute.
License
Mozilla Public License Version 2.0 (MPL-2.0).