-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.01 KB
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
43
44
45
46
47
{
"name": "dazza-dev/sri-xml-generator",
"description": "Generador XML para facturación electronica de ecuador SRI.",
"keywords": [
"sri",
"factura electrónica"
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.0",
"twig/twig": "^3.19"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"authors": [
{
"name": "Andres Daza",
"email": "adaza90@outlook.com"
}
],
"autoload": {
"psr-4": {
"DazzaDev\\SriXmlGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DazzaDev\\SriXmlGenerator\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^2.1"
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"analyse": "phpstan analyse",
"analyse-level": "phpstan analyse --level",
"test-static": "phpstan analyse --no-progress"
}
}