-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.08 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.08 KB
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
68
{
"name": "librecodeoop/nfse-php",
"description": "Framework-agnostic PHP library for NFS-e issuance, query and cancellation via SEFIN Nacional (ABRASF 2.04 / SEFIN 1.0)",
"type": "library",
"license": "AGPL-3.0-or-later",
"keywords": ["nfse", "nota-fiscal", "brazil", "sefin", "nfse-php", "fiscal", "xml-signing"],
"authors": [
{
"name": "LibreCode Coop",
"email": "dev@librecodecoop.org.br",
"homepage": "https://librecodecoop.org.br",
"role": "Developer"
}
],
"homepage": "https://github.com/LibreCodeCoop/nfse-php",
"support": {
"issues": "https://github.com/LibreCodeCoop/nfse-php/issues",
"source": "https://github.com/LibreCodeCoop/nfse-php"
},
"require": {
"php": "^8.2",
"ext-openssl": "*",
"ext-dom": "*",
"ext-soap": "*",
"csharpru/vault-php": "^4.4",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"donatj/mock-webserver": "^2.7",
"friendsofphp/php-cs-fixer": "^3.0",
"php-coveralls/php-coveralls": "^2.9",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
"LibreCodeCoop\\NfsePHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LibreCodeCoop\\NfsePHP\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-clover=build/logs/clover.xml",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm"
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}