-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
42 lines (42 loc) · 1006 Bytes
/
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
{
"name": "greenter/report",
"description": "Representacion Impresa para Facturacion Electrónica SUNAT - Perú",
"keywords": ["sunat", "pdf", "greenter", "facturacion-electronica"],
"homepage": "https://greenter.dev/",
"license": "MIT",
"authors": [
{
"name": "Giancarlos Salas",
"email": "[email protected]"
}
],
"support": {
"forum": "https://community.greenter.dev/"
},
"type": "library",
"require": {
"php": ">=7.4",
"twig/twig": "~3.0",
"greenter/core": "^5.0",
"bacon/bacon-qr-code": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"greenter/data": "^5.0"
},
"autoload": {
"psr-4": {
"Greenter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Greenter\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
}
}