forked from Strategy11/formidable-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 960 Bytes
/
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
{
"name": "strategy11/formidable-forms",
"description": "Quickly and easily create professional WordPress forms",
"keywords": [
"wordpress",
"forms"
],
"homepage": "https://formidableforms.com",
"license": "GPL-2.0+",
"authors": [
{
"name": "Strategy11",
"email": "[email protected]",
"homepage": "https://formidableforms.com/"
}
],
"type": "wordpress-plugin",
"require": {
"composer/installers": "~1.0",
"xrstf/composer-php52": "^1.0.19",
"phpmailer/phpmailer": "dev-master"
},
"autoload": {
"classmap": [
"classes/controllers/",
"classes/helpers/",
"classes/models/",
"classes/widgets/",
"classes/views/"
]
},
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
]
}
}