forked from nfephp-org/sped-nfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·83 lines (83 loc) · 2.22 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
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
78
79
80
81
82
83
{
"name": "brk-labs/sped-nfe",
"type": "library",
"description": "API para geração e comunicação da NFe e NFCe com as SEFAZ autorizadoras.",
"keywords": [
"nfe",
"nfce",
"sped",
"nfephp"
],
"homepage": "https://github.com/nfephp-org/sped-nfe",
"license": [
"LGPL-3.0-or-later",
"GPL-3.0-or-later",
"MIT"
],
"authors": [
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"homepage": "https://www.nfephp.com.br/",
"role": "Developer"
},
{
"name": "Gustavo Lidani",
"email": "[email protected]",
"homepage": "https://github.com/lidani",
"role": "Developer"
},
{
"name": "Comunidade NFePHP",
"homepage": "https://github.com/nfephp-org/sped-nfe/graphs/contributors"
}
],
"require": {
"php": ">= 7.4",
"nfephp-org/sped-common": "^5.1.0",
"nfephp-org/sped-gtin": "^1.1.0",
"justinrainbow/json-schema": "^5.2",
"ext-zlib": "*",
"ext-dom": "*",
"ext-openssl": "*",
"ext-soap": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.3",
"phpstan/phpstan": "^1.4",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"NFePHP\\NFe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\NFe\\Tests\\": "tests/"
}
},
"scripts": {
"precommit": [
"@stan",
"@phpcbf",
"@phpcs",
"@test"
],
"test": "vendor/bin/phpunit -c phpunit.xml.dist",
"test-with-coverage": "vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.xml",
"phpcbf": "vendor/bin/phpcbf src/",
"phpcs": "vendor/bin/phpcs src/",
"stan": "vendor/bin/phpstan analyse src/"
},
"extra": {
"branch-alias": {
"v5.1": "5.1-dev"
}
},
"minimum-stability": "stable"
}