-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.75 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "grandchef/dfe",
"type": "library",
"description": "Framework para geração e envio de notas fiscais eletrônicas brasileiras",
"keywords": ["nfe","nfce", "cfe"],
"homepage": "https://github.com/grandchef/dfe",
"license": "MIT",
"authors": [
{
"name": "Equipe GrandChef",
"email": "desenvolvimento@grandchef.com.br",
"homepage": "https://www.grandchef.com.br",
"role": "Developer"
}
],
"require": {
"php": ">= 8.1.0",
"ext-curl": "*",
"ext-openssl": "*",
"php-curl-class/php-curl-class": "^9.8",
"robrichards/xmlseclibs": "^3.0",
"monolog/monolog": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"scrutinizer/ocular": "^1.6",
"squizlabs/php_codesniffer": "^3.6",
"pdepend/pdepend" : "^2.10",
"phpstan/phpstan": "^1.5",
"phpmd/phpmd" : "^2.12",
"sebastian/phpcpd": "^6.0",
"phploc/phploc": "^7.0"
},
"autoload": {
"psr-4": {
"DFe\\": "src/DFe"
}
},
"autoload-dev": {
"psr-4": {
"DFe\\": "tests/DFe"
}
},
"scripts": {
"test": [
"phpunit"
],
"cover": [
"XDEBUG_MODE=coverage phpunit --coverage-html storage/coverage"
],
"psr-fix": [
"phpcbf --standard=PSR12 src/DFe/ tests/"
],
"check-style": [
"phpcs --colors --standard=PSR12 src/DFe/ tests/"
],
"analysis": [
"phpstan analyse src/"
],
"gen-class": [
"java -jar utils/SQLtoClass.jar -p utils/config.properties -t utils/template -o storage/generated"
]
}
}