-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
67 lines (66 loc) · 1.85 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
{
"name": "filips123/monolog-phpmailer",
"description": "PHPMailer handler for Monolog",
"keywords": [
"log",
"logging",
"psr-3",
"email",
"monolog",
"phpmailer"
],
"homepage": "https://github.com/filips123/MonologPHPMailer/",
"readme": "README.md",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Filip Š",
"email": "[email protected]",
"homepage": "https://projects.filips.si/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/filips123/MonologPHPMailer/issues/",
"source": "https://github.com/filips123/MonologPHPMailer/",
"docs": "https://github.com/filips123/MonologPHPMailer/wiki/"
},
"minimum-stability": "RC",
"prefer-stable": true,
"require": {
"php": ">= 8.1",
"monolog/monolog": "^3.0",
"phpmailer/phpmailer": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpunit/phpcov": "^9.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"MonologPHPMailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MonologPHPMailer\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpcs",
"@phpunit"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpunit": "phpunit"
},
"scripts-descriptions": {
"test": "Checks the coding standard with PHP CodeSniffer and launches the PHPUnit tests.",
"phpcs": "Checks the coding standard with PHP CodeSniffer.",
"phpcbf": "Fixes the coding standard errors with PHP Code Beautifier and Fixer.",
"phpunit": "Launches the PHPUnit tests."
}
}