forked from nfephp-org/sped-da
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.62 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
{
"name": "nfephp-org/sped-da",
"type": "library",
"description": "sped-da contêm as classes para criação dos documentos auxiliares referidos no projeto Sped.",
"keywords": ["nfe", "sped", "nfephp", "Danfe", "Dacte", "CCe" ],
"homepage": "https://github.com/nfephp-org/sped-da",
"license": ["LGPL-3.0-or-later+", "GPL-3.0-or-later", "MIT"],
"authors": [
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"homepage": "http://www.nfephp.org",
"role": "Developer"
},
{
"name": "Comunidade NFePHP",
"homepage": "https://github.com/nfephp-org/sped-da/graphs/contributors"
}
],
"require": {
"php" : ">= 7.0",
"tecnickcom/tc-lib-barcode": "^1.15"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpunit/phpunit": "^5.7",
"scrutinizer/ocular": "^1.3",
"sebastian/phpcpd": "^3.0",
"phpstan/phpstan": "^0.9.2"
},
"suggest": {
"nfephp-org/posprint": "^0.1"
},
"autoload": {
"psr-4": {
"NFePHP\\DA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\DA\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src",
"phpcs": "vendor/bin/phpcs --standard=psr2 src",
"phpstan": "vendor/bin/phpstan analyse src/ --level 1"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"minimum-stability": "stable"
}