-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.01 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
{
"name": "burgerbuds/formalism-craft",
"description": "Twig components for the Formalism field style framework",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"formalism",
"form styles"
],
"support": {
"docs": "https://github.com/burgerbuds/formalism/blob/master/README.md",
"issues": "https://github.com/burgerbuds/formalism/issues"
},
"license": "MIT",
"authors": [
{
"name": "Simple-Integrated-Marketing",
"homepage": "https://simple.com.au"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"solspace/craft-freeform": "^3.10.0"
},
"autoload": {
"psr-4": {
"simple\\formalism\\": "src/"
}
},
"extra": {
"name": "Formalism",
"handle": "formalism",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/burgerbuds/formalism-craft/master/CHANGELOG.md",
"components": {
"formalismService": "simple\\formalism\\services\\FormalismService"
},
"class": "simple\\formalism\\Formalism"
}
}