-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 1.03 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
{
"name": "ycamposde/greenterycam",
"description": "Implementación de la Facturacion Electrónica SUNAT - Perú",
"keywords": ["sunat", "xml", "facturacion electronica", "ubl21", "ubl20"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Giancarlos Salas",
"email": "giansalex@gmail.com"
},
{
"name": "Yerson Y. Campos De la cruz",
"email": "ycamposde@gmail.com"
}
],
"homepage": "https://github.com/ycamposde/greenter",
"type": "library",
"require": {
"php": ">=5.5.9",
"ext-dom": "*",
"greenterycam/xmldsig": "7.0.1",
"greenterycam/core": "7.0.1",
"greenterycam/ws": "7.0.1",
"greenterycam/xml": "7.0.3"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
},
"autoload": {
"psr-4": {
"Greenter\\": "src/Greenter/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}