-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
37 lines (37 loc) · 911 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
{
"name": "ideabox/elementor-widget-manager",
"description": "",
"type": "wordpress-plugin",
"authors": [
{
"name": "IdeaBox Creations",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
"wp-coding-standards/wpcs": "^2.2",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"phpcsi": [
"phpcs -i"
],
"phpcs": [
"phpcs -s -p ."
],
"phpcbf": [
"phpcbf -p ."
],
"phpcsv": "phpcs --version"
},
"extra": {
"script-description": {
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier",
"phpcsi": "List of all the coding standered default as well as custom"
}
}
}