forked from craftcms/contact-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.09 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
{
"name": "craftcms/contact-form",
"description": "Add a simple contact form to your Craft CMS site",
"version": "2.1.1",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Pixel & Tonic",
"homepage": "https://pixelandtonic.com/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftcms/contact-form/issues?state=open",
"source": "https://github.com/craftcms/contact-form",
"docs": "https://github.com/craftcms/contact-form",
"rss": "https://github.com/craftcms/contact-form/commits/v2.atom"
},
"require": {
"craftcms/cms": "^3.0.0-RC11"
},
"autoload": {
"psr-4": {
"craft\\contactform\\": "src/"
}
},
"extra": {
"name": "Contact Form",
"handle": "contact-form",
"changelogUrl": "https://raw.githubusercontent.com/craftcms/contact-form/v2/CHANGELOG.md",
"downloadUrl": "https://github.com/craftcms/contact-form/archive/v2.zip",
"components": {
"mailer": "craft\\contactform\\Mailer"
}
}
}