-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.69 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
{
"name": "nfephp-org/sped-ecf",
"type": "library",
"version": "1.0.0",
"description": "API para geração dos arquivos para SPED ECF",
"keywords": ["ecf", "sped", "nfephp"],
"homepage": "https://github.com/nfephp-org/sped-ecf",
"license": ["GPL-3.0+", "LGPL-3.0+"],
"authors": [
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"homepage": "https://github.com/nfephp-org",
"role": "owner"
},
{
"name": "Comunidade NFePHP",
"homepage": "https://github.com/nfephp-org/sped-efd/graphs/contributors"
}
],
"require": {
"php" : ">=7.0",
"nfephp-org/sped-common": "^5.0"
},
"require-dev": {
"phpstan/phpstan": "^0.10.3",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "^3.4",
"scrutinizer/ocular": "^1.5",
"thecodingmachine/phpstan-safe-rule": "^0.1.2"
},
"autoload": {
"psr-4": {
"NFePHP\\ECF\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\ECF\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "phpunit",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src/ ",
"phpcs": "vendor/bin/phpcs --standard=psr2 src/",
"phpstan": "vendor/bin/phpstan analyse src/ --level 7",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
},
"config": {
"optimize-autoloader": true
},
"minimum-stability": "stable"
}