-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·57 lines (57 loc) · 1.48 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
{
"name": "nfephp-org/senior",
"type": "library",
"description": "API para geração e comunicação com o sistema Senior.",
"keywords": ["senior","actuary"],
"homepage": "http://www.actuary.com.br",
"license": ["GPL-3.0+","LGPL-3.0+", "MIT"],
"authors": [
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Rodrigo Traleski",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php" : ">=7.2",
"ext-dom": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-SimpleXML": "*",
"ext-date":"*",
"monolog/monolog": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^8.4",
"scrutinizer/ocular": "^1.6"
},
"autoload": {
"psr-4": {
"NFePHP\\Senior\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\Senior\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src/",
"phpcs": "vendor/bin/phpcs --standard=psr2 src/",
"phpstan": "vendor/bin/phpstan analyse src/ --level 7"
},
"extra": {
"branch-alias": {
"v0.1.x": "0.1.x-dev"
}
},
"minimum-stability": "stable"
}