-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.36 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
{
"name": "dolphiq/newsletter",
"description": "Craft 3 plugin that provides an easy way to enable and manage a xml sitemap for search engines like Google",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"newsletter"
],
"support": {
"docs": "https://github.com/Dolphiq/newsletter/blob/master/README.md",
"issues": "https://github.com/Dolphiq/newsletter/issues"
},
"license": "MIT",
"authors": [
{
"name": "Dolphiq",
"homepage": "https://dolphiq.nl"
}
],
"require": {
"craftcms/cms": "~3.0.0-beta.23"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"dolphiq\\newsletter\\": "src/"
}
},
"extra": {
"name": "Newsletter",
"handle": "newsletter",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/Dolphiq/newsletter/master/CHANGELOG.md",
"components": {
"newsletterService": "dolphiq\\newsletter\\services\\NewsletterService"
},
"class": "dolphiq\\newsletter\\Newsletter"
}
}