-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
64 lines (64 loc) · 1.62 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
{
"name": "sander-van-hooft/laravel-invoicable",
"type": "library",
"description": "Easy invoice generation using Laravel Eloquent",
"keywords": [
"Eloquent",
"invoicable",
"invoice",
"Laravel",
"laravel-invoicable",
"payments",
"sandervanhooft"
],
"homepage": "https://github.com/SanderVanHooft/laravel-invoicable",
"license": "MIT",
"authors": [
{
"name": "Sander van Hooft",
"email": "[email protected]",
"homepage": "http://www.sandervanhooft.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-intl": "*",
"dompdf/dompdf": "^1.0",
"illuminate/support": "^7.0 || ^8.0",
"nesbot/carbon": "^2.0"
},
"require-dev": {
"graham-campbell/testbench": "^5.6",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.4",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload": {
"psr-4": {
"SanderVanHooft\\Invoicable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SanderVanHooft\\Invoicable\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"format": "./vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"SanderVanHooft\\Invoicable\\InvoicableServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}