forked from nfephp-org/sped-nfse-dsf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·61 lines (61 loc) · 1.9 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
{
"name": "nfephp-org/sped-nfse-dsf",
"type": "library",
"description": "API para geração e comunicação de RPS e NFSe para THEMA",
"keywords": ["nfe","nfse","sped","nfephp"],
"homepage": "https://github.com/nfephp-org/sped-nfse-dsf",
"license": ["LGPL-3.0-or-later", "GPL-3.0-or-later", "MIT"],
"authors": [
{
"name": "Germano Ferreira",
"email": "germano@proner.com.br",
"homepage": "http://www.nfephp.org",
"role": "Developer"
}
],
"require": {
"php" : ">= 7.1",
"nfephp-org/sped-common" : "^5.0",
"justinrainbow/json-schema": "^5.2",
"ext-zlib": "*",
"ext-dom": "*",
"ext-openssl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"thecodingmachine/safe": "^0.1.11",
"league/flysystem": "^1.1",
"ext-curl": "*",
"ext-soap": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.1",
"scrutinizer/ocular": "^1.3",
"phpstan/phpstan": "^0.12",
"nunomaduro/phpinsights": "^1.14"
},
"autoload": {
"psr-4": {
"NFePHP\\NFSeDSF\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\NFSeDSF\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml.dist",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src; vendor/bin/phpcbf --standard=psr2 tests",
"phpcs": "vendor/bin/phpcs --standard=psr2 src; vendor/bin/phpcs --standard=psr2 tests",
"phpstan": "vendor/bin/phpstan analyse src/ --level 7",
"rector": "vendor/bin/rector process src/ --config vendor/thecodingmachine/safe/rector-migrate.yml"
},
"extra": {
"branch-alias": {
"v1.0": "1.0-dev"
}
},
"minimum-stability": "dev"
}