-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
82 lines (82 loc) · 2.22 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "yiisoft/yii2-symfonymailer",
"description": "The SymfonyMailer integration for the Yii framework",
"keywords": [
"yii2",
"symfony",
"symfonymailer",
"mail",
"email",
"mailer"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii2-symfonymailer/issues",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"source": "https://github.com/yiisoft/yii2-symfonymailer"
},
"authors": [
{
"name": "Kirill Petrov",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"psr/event-dispatcher": "^1.0",
"symfony/mailer": "^6.4 || ^7.0",
"symfony/mime": "^6.4 || ^7.0",
"yiisoft/yii2": ">=2.0.4"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.7",
"phpunit/phpunit": "^10.5",
"roave/infection-static-analysis-plugin": "^1.34",
"symplify/easy-coding-standard": "^12.1",
"vimeo/psalm": "^5.20"
},
"suggest": {
"yiisoft/yii2-psr-log-source": "Allows routing transport logs to your Yii2 logger"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"yii\\symfonymailer\\": "src"
}
},
"autoload-dev": {
"classmap": [
"vendor/yiisoft/yii2/Yii.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"sort-packages": true
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"infection/extension-installer": true
}
},
"scripts": {
"check-dependencies": "composer-require-checker",
"easy-coding-standard": "ecs check",
"mutation": [
"Composer\\Config::disableProcessTimeout",
"roave-infection-static-analysis-plugin"
],
"psalm": "psalm",
"test": "phpunit"
}
}