-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
47 lines (47 loc) · 1.09 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
{
"name": "pedrocasado/nfse-php",
"type": "library",
"description": "Lib to communicate with web services to generate NFS-e (Nota Fiscal de Serviços Eletrônica)",
"keywords": [
"nfse",
"nfse",
"nfse-php",
"nota carioca",
"nota fiscal de servicos eletronica"
],
"license": [
"LGPL-3.0-or-later",
"GPL-3.0-or-later",
"MIT"
],
"authors": [
{
"name": "Pedro Casado",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.1 | ^8.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-openssl": "*",
"ext-xml": "*",
"vanilla/garden-schema": "^2.2",
"symfony/serializer": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"NFSePHP\\": "src/"
}
},
"extra": {
"branch-alias": {
"v1.0": "1.0-dev"
}
},
"minimum-stability": "stable"
}