-
Notifications
You must be signed in to change notification settings - Fork 301
/
composer.json
52 lines (52 loc) · 1.37 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
{
"name": "laraveldaily/laravel-invoices",
"description": "Missing invoices for Laravel",
"license": "GPL-3.0-only",
"authors": [
{
"name": "David Lun",
"email": "[email protected]",
"homepage": "https://davidlun.com",
"role": "Developer"
}
],
"homepage": "https://github.com/LaravelDaily/laravel-invoices",
"keywords": ["Laravel", "Invoice", "Invoices", "PDF"],
"require": {
"php": ">=8.2",
"barryvdh/laravel-dompdf": "^v2.0",
"illuminate/http": "^10|^11",
"illuminate/support": "^10|^11",
"symfony/http-foundation": "^6|^7"
},
"require-dev": {
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"LaravelDaily\\Invoices\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaravelDaily\\Invoices\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"LaravelDaily\\Invoices\\InvoiceServiceProvider"
],
"aliases": {
"Invoice": "LaravelDaily\\Invoices\\Facades\\Invoice"
}
}
}
}