-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.56 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
{
"name": "imarc/craft-marketoform",
"description": "Retrieves Marketo form and makes it available on the front end of a Craft website",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"marketo",
"craft-marketo",
"marketo-plugin"
],
"support": {
"docs": "https://github.com/LinneaHarts/craft-marketoform/blob/master/README.md",
"issues": "https://github.com/LinneaHarts/craft-marketoform/issues"
},
"license": "MIT",
"authors": [
{
"name": "Linnea Hartsuyker",
"homepage": "https://www.imarc.com"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"craftcms/redactor": "^2.6.1"
},
"require-dev": {
"craftcms/cms": "^3.2.0",
"codeception/codeception": "^3.0",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"imarc\\marketoform\\": "src/"
}
},
"extra": {
"name": "MarketoForm",
"handle": "marketoform",
"developer": "Linnea Hartsuyker",
"developerUrl": "https://www.imarc.com",
"documentationUrl": "https://github.com/LinneaHarts/craft-marketoform/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/LinneaHarts/craft-marketoform/master/CHANGELOG.md",
"components": {
"marketoFormService": "imarc\\marketoform\\services\\MarketoFormService"
},
"class": "imarc\\marketoform\\MarketoForm"
}
}