-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.53 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": "hsd-cl/dte-cl",
"description": "Laravel Package for Chile DTE",
"keywords": [
"sii",
"hsd",
"dte-cl",
"chile",
"laravel"
],
"homepage": "https://github.com/hsd-cl/dte-cl",
"license": "AGPL-3.0+",
"type": "library",
"authors": [
{
"name": "David Lopez",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"h4cc/wkhtmltoimage-amd64": "0.12.x",
"h4cc/wkhtmltopdf-amd64": "0.12.x",
"laravel/framework": "^8.44",
"sasco/libredte": "^21.10",
"symfony/options-resolver": "^5.4",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "9.2.2"
},
"autoload": {
"psr-4": {
"HSDCL\\DteCl\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HSDCL\\DteCl\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"HSDCL\\DteCl\\DteClServiceProvider"
],
"aliases": {
"DteCl": "HSDCL\\DteCl\\DteClFacade"
}
}
}
}