-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
executable file
·70 lines (69 loc) · 1.92 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
{
"name": "nfephp-org/sped-efinanceira",
"type": "library",
"description": "e-Financeira library",
"homepage": "https://github.com/nfephp-org/sped-efinanceira",
"keywords": ["Sped", "e-Financeira"],
"license": ["LGPL-3.0-or-later+", "GPL-3.0-or-later", "MIT"],
"authors": [
{
"name": "Roberto L. Machado",
"email": "linux.rlm@gmail.com",
"role": "Developer"
},
{
"name": "Rodrigo Traleski",
"email": "rodrigo@actuary.com.br",
"role": "Developer"
},
{
"name": "Ademilson Santana da Silva",
"email": "ademilsonssilva1@gmail.com",
"role": "Developer"
}
],
"require": {
"php" : ">=7.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-zlib": "*",
"nfephp-org/sped-common" : "^5.0",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.3",
"phpstan/phpstan": "^1.4",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"NFePHP\\eFinanc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\eFinanc\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src/",
"phpcs": "vendor/bin/phpcs --standard=psr2 src/",
"stan": "vendor/bin/phpstan analyse src/",
"stan80": "phpstan analyse src/ -c phpstan80.neon",
"stan81": "phpstan analyse src/ -c phpstan81.neon"
},
"extra": {
"branch-alias": {
"v2.0": "2.0-dev"
}
},
"minimum-stability": "stable"
}