-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 877 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 877 Bytes
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": "babucat/aeat",
"description": "Utilidad PHP de propósito general para la confección y presentación de modelos de la [Agencia Estatal de Administració Tributaria](https://www.agenciatributaria.es).",
"type": "library",
"authors": [
{
"name": "Francesc Bassas i Bullich"
},
{
"name": "Xavier de la Encarnación Gómez"
}
],
"version": "1.6.2",
"license": "MIT",
"autoload": {
"psr-4": {
"babucat\\AEAT\\": "src/"
},
"files": [
"src/AEAT182.php",
"src/AEAT182RBase.php",
"src/AEAT182RDeclarant.php",
"src/AEAT182RDeclared.php"
]
},
"autoload-dev": {
"psr-4": {
"babucat\\tests\\AEAT\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5"
}
}