-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·72 lines (72 loc) · 2.08 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
{
"name": "jub/craft-newsletter",
"description": "Craft CMS Newsletter plugin",
"type": "craft-plugin",
"version": "2.2.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"newsletter"
],
"support": {
"docs": "https://github.com/juban/craft-newsletter/blob/master/README.md",
"issues": "https://github.com/juban/craft-newsletter/issues"
},
"license": "MIT",
"authors": [
{
"name": "juban",
"homepage": "https://github.com/juban"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0",
"mailjet/mailjet-apiv3-php": "^1.5",
"mailchimp/marketing": "^3.0",
"getbrevo/brevo-php": "^1.0"
},
"require-dev": {
"codeception/codeception": "^4.0.0",
"vlucas/phpdotenv": "^3.0",
"codeception/module-yii2": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-db": "^1.1",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"jub/craft-google-recaptcha": "^2.1"
},
"autoload": {
"psr-4": {
"juban\\newsletter\\": "src/"
}
},
"extra": {
"name": "Newsletter",
"handle": "newsletter",
"developer": "juban",
"developerUrl": "https://github.com/juban",
"documentationUrl": "https://github.com/juban/craft-newsletter/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/juban/craft-newsletter/master/CHANGELOG.md",
"class": "juban\\newsletter\\Newsletter"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
},
"preferred-install": {
"craftcms/cms": "source",
"*" : "dist"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
}
}