forked from Dolphiq/craft3-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.11 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
{
"name": "dolphiq/craft3-forms",
"description": "Craft 3 formulieren",
"version": "1.0.0",
"keywords": [
"craft",
"craft3",
"cms",
"craftcms",
"craft-plugin",
"plugin",
"form",
"forms",
"yii",
"yii2"
],
"type": "craft-plugin",
"minimum-stability": "beta",
"license": "MIT",
"require": {
"craftcms/cms": "^3.0.0-beta.20"
},
"autoload": {
"psr-4": {
"plugins\\dolphiq\\form\\": "src/"
}
},
"authors": [
{
"name": "Dolphiq",
"email": "[email protected]",
"homepage": "https://dolphiq.nl/"
}
],
"extra": {
"handle": "dolphiq-craft3-forms",
"name": "Forms",
"description": "Craft form plugin that will let you use forms as you would when using the Yii 2 Framework",
"schemaVersion": "1.0.0",
"developer": "Dolphiq",
"developerUrl": "https://dolphiq.nl/",
"hasCpSettings": true,
"hasCpSection": false,
"documentationUrl": "https://github.com/Dolphiq/craft3-forms/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/Dolphiq/craft3-forms/master/CHANGELOG.md"
}
}