-
Notifications
You must be signed in to change notification settings - Fork 98
/
composer.json
36 lines (36 loc) · 1.08 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
{
"name": "josemmo/facturae-php",
"description": "Librería para la generación, firma y envío de facturas electrónicas",
"keywords": ["facturae", "xades", "face", "faceb2b"],
"license": "MIT",
"homepage": "https://github.com/josemmo/Facturae-PHP",
"authors": [
{
"name": "josemmo",
"email": "josemmo@pm.me",
"homepage": "https://github.com/josemmo"
}
],
"require": {
"php": ">=5.6"
},
"suggest": {
"ext-openssl": "For signing and timestamping both invoices and SOAP requests",
"ext-curl": "For communicating with remote TSA Servers and SOAP Web Services",
"ext-fileinfo": "For getting MIME types when using FacturaeFile",
"lib-libxml": "For parsing SOAP XML responses for FACe and FACeB2B"
},
"require-dev": {
"symfony/phpunit-bridge": "*"
},
"autoload-dev": {
"psr-4": {
"josemmo\\Facturae\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"josemmo\\Facturae\\": "src/"
}
}
}