forked from nfephp-org/sped-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·67 lines (67 loc) · 1.71 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
{
"name": "nfephp-org/sped-common",
"type": "library",
"description": "sped-common é parte do projeto NFePHP.",
"keywords": [
"nfe",
"sped",
"nfephp"
],
"homepage": "https://github.com/nfephp-org/sped-common",
"license": [
"GPL-3.0+",
"LGPL-3.0+",
"MIT"
],
"authors": [
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"homepage": "http://www.nfephp.org",
"role": "Developer"
},
{
"name": "Comunidade NFePHP",
"homepage": "https://github.com/nfephp-org/sped-common/graphs/contributors"
}
],
"require": {
"php": ">=5.6",
"ext-dom": "*",
"ext-curl": "*",
"ext-soap": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"psr/log": "^1.0",
"league/flysystem": "^1.0",
"symfony/yaml": "^3.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.8",
"phpunit/phpunit": "^5.7",
"scrutinizer/ocular": "^1.3",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2"
},
"autoload": {
"psr-4": {
"NFePHP\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\Common\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-v5.0": "5.0-dev"
}
},
"minimum-stability": "stable",
"scripts": {
"test": "phpunit -c phpunit.xml.dist",
"phpcs": "./vendor/bin/phpcs --standard=psr2 src",
"phpcbf": "./vendor/bin/phpcbf --standard=psr2 src"
}
}