-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.16 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.16 KB
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
{
"name": "somehow-digital/craft-lettermint",
"description": "Lettermint Mailer Adapter for Craft CMS.",
"type": "craft-plugin",
"keywords": ["lettermint", "email", "adapter", "plugin"],
"license": "MIT",
"homepage": "https://somehow.digital/",
"authors": [
{
"name": "Thomas Deinhamer",
"email": "code@thasmo.dev",
"homepage": "https://thasmo.com/"
}
],
"support": {
"email": "support@somehow.digital",
"docs": "https://github.com/somehow-digital/craft-lettermint",
"source": "https://github.com/somehow-digital/craft-lettermint",
"issues": "https://github.com/somehow-digital/craft-lettermint/issues"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
},
"require": {
"php": "^8.2",
"craftcms/cms": "^5.8.0",
"somehow-digital/symfony-lettermint-mailer": "^1.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"SomehowDigital\\Craft\\Lettermint\\": "src/"
}
},
"extra": {
"name": "Lettermint",
"handle": "lettermint",
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}