-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 915 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 915 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "facturapi/facturapi-php",
"type": "library",
"description": "Facturapi's PHP client library",
"keywords": [
"mexico",
"sat",
"cfdi",
"factura",
"facturapi",
"api"
],
"homepage": "https://www.facturapi.io/",
"license": "MIT",
"authors": [
{
"name": "Jhonatan Laguna"
},
{
"name": "Javier Rosas"
},
{
"name": "Raúl Sánchez"
}
],
"support": {
"docs": "https://www.facturapi.io/docs",
"issues": "https://github.com/facturapi/facturapi-php/issues",
"source": "https://github.com/facturapi/facturapi-php",
"email": "contacto@facturapi.io"
},
"require": {
"php": ">=8.2",
"guzzlehttp/guzzle": "^7.9",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"Facturapi\\": "src/"
}
},
"minimum-stability": "stable"
}