forked from sandervanhooft/laravel-invoicable
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.07 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (73 loc) · 2.07 KB
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
70
71
72
73
{
"name": "neptunesoftware/laravel-invoice",
"type": "library",
"description": "Easy invoice generation using Laravel Eloquent",
"keywords": [
"Eloquent",
"invoicable",
"invoice",
"Laravel",
"laravel-invoice",
"payments",
"neptunesoftware"
],
"homepage": "https://github.com/neptunesoftware/laravel-invoice",
"license": "MIT",
"authors": [
{
"name": "Burak <ikidnapmyself>",
"email": "burak@myself.com",
"homepage": "https://github.com/ikidnapmyself"
},
{
"name": "Fatih <kablanfatih>",
"email": "kablanfatih34@gmail.com",
"homepage": "https://github.com/kablanfatih"
},
{
"name": "Ugur <ugurdnlr>",
"email": "ugurdinler0@gmail.com",
"homepage": "https://github.com/ugurdnlr"
}
],
"require": {
"php": "^7.2",
"ext-intl": "*",
"dompdf/dompdf": "^0.8.0",
"illuminate/support": "^5.8|^6.0|^7.0",
"nesbot/carbon": "^1.22|^2.0"
},
"require-dev": {
"graham-campbell/testbench": "^5.2",
"phpunit/phpunit": "^7.5|^8.3",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"NeptuneSoftware\\Invoice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NeptuneSoftware\\Invoice\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"NeptuneSoftware\\Invoice\\Providers\\InvoiceServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}