-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
executable file
·56 lines (56 loc) · 1.63 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
{
"name": "nfephp-org/sped-mail",
"type": "library",
"description": "API para geração e envio dos emails relacionados com o SPED.",
"keywords": ["nfse", "sped", "nfephp"],
"homepage": "https://github.com/nfephp-org/sped-mail",
"license": ["GPL-3.0+","LGPL-3.0+", "MIT"],
"authors": [
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"homepage": "http://www.nfephp.com.br",
"role": "Developer"
},
{
"name": "Comunidade NFePHP",
"homepage": "https://github.com/nfephp-org/sped-mail/graphs/contributors"
}
],
"require": {
"php" : ">= 7.0",
"ext-dom": "*",
"phpmailer/phpmailer": "^6.1",
"soundasleep/html2text": "~0.3",
"nfephp-org/sped-common": "^5.0"
},
"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\\Mail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NFePHP\\Mail\\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 -l 6 src/ tests/"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.*-dev"
}
},
"minimum-stability": "stable"
}