This repository has been archived by the owner on Sep 26, 2019. It is now read-only.
forked from nfephp-org/nfephp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
97 lines (97 loc) · 2.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nfephp-org/nfephp",
"type": "library",
"description": "NFePHP é uma API para gerenciamento das comunicações entre o emitente de NFe e os serviços dos SEFAZ estaduais. Inteiramente construido em PHP para rodar sob qualquer sistema operacional.",
"keywords": [
"nfe",
"sped",
"nfephp"
],
"homepage": "https://github.com/nfephp-org/nfephp",
"license": [
"GPL-3.0+",
"LGPL-3.0+"
],
"authors": [
{
"name": "Roberto L. Machado",
"email": "linux.rlm@gmail.com.br",
"homepage": "http://www.nfephp.org",
"role": "Developer"
},
{
"name": "Comunidade NFePHP",
"homepage": "https://github.com/nfephp-org/nfephp/graphs/contributors"
}
],
"require": {
"php": ">=5.5.0",
"ext-dom": "*",
"ext-xml": "*",
"ext-libxml": "*",
"ext-xmlreader": "*",
"ext-curl": "*",
"ext-soap": "*",
"ext-openssl": "*",
"ext-zip": "*",
"ext-zlib": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"zendframework/zend-servicemanager": "^2.5",
"zendframework/zend-mail": "^2.5",
"soundasleep/html2text": "~0.2",
"mpdf/mpdf": "6.0.0",
"endroid/qrcode": "1.*@dev"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"nfephp-org\\nfephp\\": "libs/"
},
"psr-0": {
"": ["libs/", "tests/"]
},
"classmap": [
"./libs/NFe/",
"./libs/CTe/",
"./libs/MDFe/",
"./libs/NFSe/",
"./libs/Common/",
"./libs/Common/Base/",
"./libs/Common/Certificate/",
"./libs/Common/Configure/",
"./libs/Common/DateTime/",
"./libs/Common/Dom/",
"./libs/Common/Exception/",
"./libs/Common/Files/",
"./libs/Common/Identify/",
"./libs/Common/Keys/",
"./libs/Common/LotNumber/",
"./libs/Common/Modules/",
"./libs/Common/Soap/",
"./libs/Common/Strings/",
"./libs/Extras/"
]
},
<<<<<<< HEAD
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.10.x-dev"
}
}
=======
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev",
"dev-develop": "4.1.x-dev"
}
},
"minimum-stability": "dev"
>>>>>>> 2df079f4a6cdd3dbc8add2426e1f0dad22721a1d
}