-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.44 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
{
"name": "nfephp-org/sped-ibge",
"type": "library",
"description": "Library to access the services of IBGE to obtain the codes used by the system SPED",
"homepage": "https://github.com/nfephp-org/sped-ibge",
"keywords": ["Sped", "IBGE", "Municipios", "Estatos"],
"license": ["LGPL-3.0-or-later", "GPL-3.0-or-later", "MIT"],
"authors": [
{
"name": "Roberto L. Machado",
"email": "linux.rlm@gmail.com",
"homepage": "https://github.com/nfephp-org",
"role": "Developer"
}
],
"require": {
"php" : ">=7.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "dev-master",
"phpunit/phpunit": "^6",
"scrutinizer/ocular": "^1.3",
"phpstan/phpstan": "^0.12.99",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"NFePHP\\Ibge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\Ibge\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml.dist",
"phpcbf": "vendor/bin/phpcbf src/ tests/",
"phpcs": "vendor/bin/phpcs src/ tests/",
"stan": "vendor/bin/phpstan analyse src/ tests/"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "stable"
}