-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
69 lines (68 loc) · 1.92 KB
/
composer.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "omaralalwi/laravel-taxify",
"description": "Laravel Taxify provides a set of helper functions and classes to simplify tax (VAT) calculations within Laravel applications. that allow developers to easily integrate tax calculation functionalities into their projects. it's offers a straightforward and efficient solution Designed to streamline the process of handling taxes.",
"keywords": [
"omaralalwi",
"laravel-taxify",
"laravel-VAT",
"VAT-package",
"Tax-package",
"php-Tax-package",
"laravel-Tax-package",
"laravel-helpers",
"tax-calculation",
"laravel-helper",
"VAT-calculation",
"laravel-facade",
"VAT-helper",
"tax-helper",
"Laravel-library",
"Laravel-VAT-helper"
],
"homepage": "https://github.com/omaralalwi/laravel-taxify",
"license": "MIT",
"type": "library",
"version": "2.0.2",
"authors": [
{
"name": "omar alalwi",
"email": "omaralwi2010@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1|^8.2|^8.3"
},
"require-dev": {
"phpunit/phpunit": "^9.3.3|^10.5",
"orchestra/testbench": "^8.21.1"
},
"autoload": {
"psr-4": {
"Omaralalwi\\LaravelTaxify\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Omaralalwi\\LaravelTaxify\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Omaralalwi\\LaravelTaxify\\LaravelTaxifyServiceProvider"
]
}
}
}