-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
52 lines (52 loc) · 1.25 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": "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",
"phpmailer/phpmailer": ">=5.2.25"
},
"autoload": {
"classmap": [
"classes/controllers/",
"classes/factories/",
"classes/helpers/",
"classes/models/",
"classes/widgets/",
"classes/views/"
]
},
"require-dev": {
"php-stubs/wordpress-stubs": "^5.9",
"yoast/phpunit-polyfills": "^1.0",
"wp-coding-standards/wpcs": "^3.0",
"automattic/vipwpcs": "^3.0",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.3",
"slevomat/coding-standard": "~8.0",
"friendsofphp/php-cs-fixer": "^3.54",
"rector/rector": "^1.0"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}