forked from dotkernel/dot-controller-plugin-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 714 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 714 Bytes
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
{
"name": "dotkernel/dot-controller-plugin-mail",
"type": "library",
"description": "DotKernel mail controller plugin component",
"license": "MIT",
"authors": [
{
"name": "DotKernel Team",
"email": "team@dotkernel.com"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-servicemanager": "^3.21.0",
"dotkernel/dot-controller": "^3.4.1",
"dotkernel/dot-mail": "^4.1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.3.2",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Dot\\Controller\\Plugin\\Mail\\": "src/"
}
}
}