forked from mazinsw/nfe-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "mazinsw/nfe-api",
"type": "library",
"description": "API para geração e envio de notas fiscais eletrônicas brasileiras",
"keywords": ["nfe","nfce"],
"homepage": "https://github.com/mazinsw/nfe-api",
"license": "MIT",
"authors": [
{
"name": "Francimar Alves",
"email": "mazinsw@gmail.com",
"homepage": "https://www.facebook.com/mazinsw",
"role": "Developer"
}
],
"require": {
"php": ">= 7.1.0",
"ext-curl": "*",
"ext-openssl": "*",
"php-curl-class/php-curl-class": "^8.0",
"robrichards/xmlseclibs": "^3.0",
"monolog/monolog": "^1.23"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"scrutinizer/ocular": "^1.6",
"squizlabs/php_codesniffer": "^3.3",
"pdepend/pdepend" : "^2.5",
"phpmd/phpmd" : "^2.6",
"sebastian/phpcpd": "^4.0",
"phpdocumentor/phpdocumentor": "^2.9",
"phploc/phploc": "^4.0"
},
"autoload": {
"psr-4": {
"NFe\\": "api/NFe"
},
"classmap": [
"api/util"
]
},
"autoload-dev": {
"psr-4": {
"NFe\\": "tests/NFe"
}
},
"scripts": {
"test": [
"phpunit"
],
"cover": [
"phpunit --coverage-html storage/coverage"
],
"check_psr": [
"phpcs --colors --standard=psr2 api/NFe/ tests/"
]
}
}