forked from thegreenter/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 933 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
{
"name": "greenter/sample",
"description": "Greenter Samples",
"keywords": ["samples", "greenter", "facturacion electronica", "sunat"],
"license": "MIT",
"authors": [
{
"name": "Giancarlos Salas",
"email": "giansalex@gmail.com"
}
],
"homepage": "https://github.com/giansalex/greenter-sample",
"type": "project",
"optimize-autoloader": true,
"classmap-authoritative": true,
"autoload": {
"psr-4": {
"": "src/"
}
},
"require": {
"greenter/greenter": "^2.1",
"greenter/report": "^1.3",
"greenter/htmltopdf": "^1.0",
"ext-gd": "*",
"greenter/xcodes": "^1.0",
"greenter/data": "^1.1"
},
"scripts": {
"start": "php -S 0.0.0.0:8080",
"post-install-cmd": "ComposerScripts::postInstall",
"reset-cache": "ComposerScripts::clearCache"
}
}