-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cracksalad/phpmailer-pgp",
"version": "2.0",
"type": "library",
"description": "PHPMailerPGP enables PHPMailer to send OpenPGP/GPG encrypted and signed e-mails",
"keywords": [
"mailer",
"open-pgp",
"gpg"
],
"license": "LGPL-2.1-only",
"authors": [
{
"name": "Travis Richardson"
},
{
"name": "Andreas Wahlen",
"role": "Maintainer"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=5.5.0",
"phpmailer/phpmailer": "^6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.2",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3.5",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"suggest": {
"ext-gnupg": "is technically required, but not compatible with Windows",
"psr/log": "For optional PSR-3 debug logging"
},
"autoload": {
"psr-4": {
"PHPMailer\\PHPMailerPGP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPMailerPGP\\Test\\": "tests/"
}
},
"scripts": {
"check": "./vendor/bin/phpcs",
"analyze": "./tools/psalm --no-diff --show-info=true",
"unit-test": "./tools/phpunit",
"test": [
"@check",
"@analyze",
"@unit-test"
],
"test-win": [
"@check",
"@analyze"
]
},
"scripts-descriptions": {
"check": "Runs PHP Code Sniffer",
"analyze": "Runs Psalm",
"unit-test": "Runs PHPUnit",
"test": "Runs PHP Code Sniffer, Psalm and PHPUnit",
"test-win": "Runs PHP Code Sniffer and Psalm (PHPUnit needs GnuPG extension, which is not compatible with Windows)"
}
}