-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.72 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.72 KB
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
{
"name": "wpconstructor/contact",
"description": "WPConstructor Contact is a lightweight WordPress plugin that adds a customizable AJAX contact form with reCAPTCHA support, input persistence, and a 5-minute submission cooldown for spam protection.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "WPConstructor",
"homepage": "https://wpconstructor.com/contact",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"wpconstructor/plugin-version": "^1.0"
},
"require-dev": {
"wpconstructor/scripts": "*",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.1",
"php-stubs/wordpress-stubs": "^6.9",
"squizlabs/php_codesniffer": "^3.13",
"wp-coding-standards/wpcs": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"autoload": {
"psr-4": {
"WPConstructor\\Contact\\": "src/"
}
},
"scripts": {
"build": "php vendor/wpconstructor/scripts/bin/build-zip.php",
"cfp": "php vendor/wpconstructor/scripts/bin/cfp.php",
"lint": "vendor/bin/phpcs",
"stan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit --colors=auto tests",
"backup:plugin": "php vendor/wpconstructor/scripts/bin/backup-plugin.php",
"backup:all-plugins": "php vendor/wpconstructor/scripts/bin/backup-all-plugins.php"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}