-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·77 lines (77 loc) · 2.23 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·77 lines (77 loc) · 2.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nfe/nfe",
"description": "SDK PHP oficial da NFE.io — PHP 8.2+, zero dependências em runtime, paridade com o SDK Node.js.",
"homepage": "https://nfe.io",
"type": "library",
"keywords": [
"nfe",
"nfse",
"nfe.io",
"api",
"sdk",
"nota-fiscal",
"invoice",
"brazil"
],
"license": "MIT",
"authors": [
{
"name": "NFE.io",
"homepage": "https://nfe.io",
"email": "suporte@nfe.io"
}
],
"support": {
"issues": "https://github.com/nfe/client-php/issues",
"source": "https://github.com/nfe/client-php"
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"nikic/php-parser": "^5.0",
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"psr/log": "^3.0",
"symfony/yaml": "^7.0"
},
"suggest": {
"psr/http-client": "Required only if you wish to use Nfe\\Http\\Psr18Transport with a custom PSR-18 client (Guzzle, Symfony HttpClient, etc.).",
"psr/http-factory": "Required only if you wish to use Nfe\\Http\\Psr18Transport (PSR-17 request/stream factories).",
"psr/log": "Required only if you want to wire a PSR-3 logger to the SDK via Nfe\\Config(logger: ...)."
},
"autoload": {
"psr-4": {
"Nfe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nfe\\Tests\\": "tests/",
"Nfe\\Build\\": "scripts/Generator/"
}
},
"scripts": {
"test": "pest",
"stan": "phpstan analyse --memory-limit=512M",
"cs": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"generate": "@php scripts/generate.php",
"generate:check": "@php scripts/generate.php --check"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}