-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.09 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
{
"name": "wedevs/wpfeather",
"description": "A very lightweight floating contact form for WordPress with built-in spam protection & Cloudflare Turnstile integration",
"type": "wordpress-plugin",
"license": "GPL v2 or later",
"authors": [
{
"name": "wedevs",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.4",
"woocommerce/action-scheduler": "^3.4.2"
},
"require-dev": {
"tareq1988/wp-php-cs-fixer": "dev-master",
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7",
"phpcompatibility/phpcompatibility-wp": "dev-master"
},
"autoload": {
"psr-4": {
"WeDevs\\WpFeather\\": "includes/"
},
"files": [
"includes/functions.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4"
}
}
}