-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.36 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.36 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
{
"name": "pedrocasado/nfse-php",
"type": "library",
"description": "Lib to communicate with Sistema Nacional (NFS-e)",
"keywords": [
"nfse",
"nfse-php",
"nota fiscal de servicos eletronica",
"sistema nacional de notas fiscais eletronicas"
],
"license": [
"LGPL-3.0-or-later",
"GPL-3.0-or-later",
"MIT"
],
"authors": [
{
"name": "Pedro Casado",
"email": "pdr33n@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-xml": "*",
"ext-zlib": "*",
"symfony/serializer": "^7.4",
"symfony/http-client": "^7.4",
"symfony/validator": "^7.4",
"nfephp-org/sped-common": "^5.1",
"psr/log": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.94.2",
"phpunit/phpunit": "^10.0"
},
"autoload-dev": {
"psr-4": {
"NFSePHP\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"NFSePHP\\": "src/"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"v1.0": "1.0-dev"
}
},
"minimum-stability": "stable"
}