-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
50 lines (50 loc) · 1.51 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": "genkgo/mail",
"description": "Library to send e-mails over different transports and protocols (like SMTP and IMAP) using immutable messages and streams. Also includes SMTP server.",
"license": "MIT",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-intl": "*",
"ext-iconv": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.24",
"phpstan/phpstan": "^1.8.5",
"phpstan/phpstan-phpunit": "^1.1.1",
"friendsofphp/php-cs-fixer": "^3.0",
"predis/predis": "^1.0",
"psr/log": "^1.0",
"ext-openssl": "*"
},
"authors": [
{
"name": "Frederik Bosch",
"email": "f.bosch@genkgo.nl"
}
],
"suggest": {
"predis/predis": "Use redis to queue messages",
"ext-openssl": "Sign your messages with DKIM"
},
"autoload": {
"psr-4": {
"Genkgo\\Mail\\": ["src"]
}
},
"autoload-dev": {
"psr-4": {
"Genkgo\\TestMail\\": ["test"]
}
},
"scripts": {
"lint": [
"./vendor/bin/php-cs-fixer fix --verbose --config .php-cs-fixer.dist.php ./src ./test"
],
"test": [
"./vendor/bin/phpunit -c phpunit.xml",
"./vendor/bin/php-cs-fixer fix --verbose --dry-run --config .php-cs-fixer.dist.php ./src ./test",
"./vendor/bin/phpstan analyse -l max src",
"./vendor/bin/phpstan analyse -l 5 -c .phpstan.test.neon test"
]
}
}