-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.05 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
{
"name": "saucal/woorricane-helper",
"description": "This is a short description of what the plugin does. It's displayed in the WordPress admin area.",
"homepage": "https://saucal.com/",
"type": "wordpress-plugin",
"keywords": [],
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.3"
},
"require-dev": {
"composer/installers": "^1.7.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"woocommerce/woocommerce-sniffs": "^0.1.0",
"wp-coding-standards/wpcs": "^2.3"
},
"autoload": {
"psr-4": {
"WoorricaneHelper\\": "includes/"
}
},
"config": {
"platform": {
"php": "7.3.0"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": [
"phpcs --extensions=php -s -p"
],
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
}
}