-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 952 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
36
37
38
39
40
{
"name": "greenter/validator",
"description": "Greenter Validator - Facturacion Electrónica SUNAT - Perú",
"keywords": ["sunat", "greenter", "validador", "facturacion-electronica"],
"homepage": "https://greenter.dev/",
"license": "MIT",
"authors": [
{
"name": "Giancarlos Salas",
"email": "[email protected]"
}
],
"support": {
"forum": "https://community.greenter.dev/"
},
"type": "library",
"require": {
"php": ">=7.4",
"greenter/core": "^5.0",
"symfony/validator": "^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Greenter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Greenter\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
}
}