forked from thegreenter/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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
{
"name": "greenter/demo",
"description": "Demostración de Greenter",
"keywords": ["greenter", "facturacion-electronica", "sunat"],
"license": "MIT",
"authors": [
{
"name": "Giancarlos Salas",
"email": "[email protected]"
}
],
"homepage": "https://github.com/thegreenter/demo",
"type": "project",
"autoload": {
"psr-4": {
"": "src/"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"greenter/lite": "^4.3",
"greenter/report": "^4.3",
"greenter/htmltopdf": "^4.3",
"greenter/data": "^4.3"
},
"require-dev": {
"phpstan/phpstan": "^0.12.33"
},
"scripts": {
"post-install-cmd": "@php composer/PostInstall.php",
"reset-cache": "@php composer/ClearCache.php",
"lint": "phpstan analyse",
"lint:ci": "phpstan analyse --error-format=github"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
}
}