-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.07 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "super-forms/super-forms",
"description": "WordPress drag & drop form builder plugin with various add-ons and extensions",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Super Forms Team",
"email": "info@feeling4design.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": ">=7.4",
"composer/installers": "^1.12|^2.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/php-compatibility": "^9.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.5",
"yoast/phpunit-polyfills": "^1.0",
"brain/monkey": "^2.6",
"automattic/vipwpcs": "^3.0"
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml --report=summary",
"phpcs:fix": "phpcbf --standard=phpcs.xml",
"phpcs:report": "phpcs --standard=phpcs.xml --report=full",
"phpcs:security": "phpcs --standard=phpcs.xml --report=security",
"compatibility": "phpcs --standard=PHPCompatibilityWP --runtime-set testVersion 7.4- .",
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"validate": [
"@phpcs",
"@compatibility"
],
"fix": [
"@phpcs:fix"
],
"pre-commit": [
"@validate"
]
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": ["type:wordpress-plugin", "type:wordpress-theme"]
}
},
"autoload": {
"psr-4": {
"SuperForms\\": "src/includes/"
}
},
"autoload-dev": {
"psr-4": {
"SuperForms\\Tests\\": "tests/"
}
}
}