forked from ConsoleTVs/Invoices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.71 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
{
"name": "solumdesignum/invoices",
"description": "Generate PDF invoices for your customers in laravel",
"license": "MIT",
"authors": [
{
"name": "Oskars Germovs",
"email": "[email protected]",
"homepage": "https://solum-desigmum.eu"
}
],
"type": "library",
"keywords": [
"Laravel",
"Invoices",
"Generate",
"Create",
"Open Source",
"Customers",
"PDF",
"Oskars Germovs"
],
"require": {
"php": "^8.1|^8.2|^8.3|^8.4",
"illuminate/support": "^5|^6|^7|^8|^9|^10|^11|^12",
"ext-bcmath": "*",
"nesbot/carbon": "^2|^3",
"dompdf/dompdf": "^2|^3"
},
"require-dev": {
"phpunit/phpunit": "^8|^9|^10|^11",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^5|^6|^7|^8|^9",
"sempro/phpunit-pretty-print": "^1.4"
},
"autoload": {
"psr-4": {
"SolumDeSignum\\Invoices\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SolumDeSignum\\Invoices\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"SolumDeSignum\\Invoices\\InvoicesServiceProvider"
],
"aliases": {
"Invoices": "SolumDeSignum\\Invoices\\Facades\\InvoicesFacade"
}
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --coverage-html coverage"
}
}