forked from thegreenter/greenter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 875 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
{
"name": "greenter/greenter",
"description": "Implementación de la Facturacion Electrónica SUNAT - Perú",
"keywords": ["sunat", "xml", "facturacion electronica", "ubl21", "ubl20"],
"license": "MIT",
"authors": [
{
"name": "Giancarlos Salas",
"email": "[email protected]"
}
],
"homepage": "https://github.com/giansalex/greenter",
"type": "library",
"require": {
"php": ">=5.5.9",
"ext-dom": "*",
"greenter/xmldsig": "^5.0",
"greenter/core": "^2.1",
"greenter/ws": "^2.1",
"greenter/xml": "^2.1"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
},
"autoload": {
"psr-4": {
"Greenter\\": "src/Greenter/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}