-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
77 lines (77 loc) · 2.12 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
{
"name": "nfephp-org/sped-sintegra",
"type": "library",
"description": "API para geração dos arquivos para Sintegra",
"keywords": [
"sintegra",
"nfephp"
],
"homepage": "https://github.com/nfephp-org/sped-sintegra",
"license": [
"MIT",
"GPL-3.0+",
"LGPL-3.0+"
],
"authors": [
{
"name": "Ismael A. Goncalves",
"email": "[email protected]",
"homepage": "https://github.com/ismaeladriano",
"role": "Developer"
},
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"homepage": "http://www.nfephp.com.br",
"role": "Developer"
},
{
"name": "Cleiton Perin",
"email": "[email protected]",
"homepage": "http://www.cloud-dfe.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-da/graphs/contributors"
}
],
"require": {
"php": ">= 7.4",
"nfephp-org/sped-common": "^5.1.0",
"brazanation/documents": "^2.1.0",
"nfephp-org/sped-gtin": "^1.1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.3",
"phpstan/phpstan": "^1.4",
"sebastian/phpcpd": "^6.0"
},
"autoload": {
"psr-4": {
"NFePHP\\Sintegra\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\Sintegra\\Tests\\": "tests/"
}
},
"scripts": {
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src/",
"phpcs": "vendor/bin/phpcs --standard=psr2 src/",
"stan": "vendor/bin/phpstan analyse --level=6 src/",
"test": "phpunit"
},
"config": {
"optimize-autoloader": true
},
"minimum-stability": "stable"
}