-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
executable file
·55 lines (55 loc) · 1.55 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
{
"name": "nfephp-org/sped-averbacao",
"type": "library",
"description": "API para comunicação e Averbação dos CTes, MDFes e NFes com as Seguradoras.",
"keywords": ["averbacao", "sped", "nfephp"],
"homepage": "https://github.com/nfephp-org/sped-averbacao",
"license": ["LGPL-3.0-or-later", "GPL-3.0-or-later", "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-averbacao/graphs/contributors"
}
],
"require": {
"php" : "^7|^8",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-curl": "*",
"ext-soap": "*",
"ext-simplexml": "*",
"nfephp-org/sped-common" : "^5.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.3",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-4": {
"NFePHP\\Averbacao\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\Averbacao\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src/",
"phpcs": "vendor/bin/phpcs --standard=psr2 src/"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
},
"minimum-stability": "stable"
}