-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 830 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 830 Bytes
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
{
"name": "lightspeedwp/ls-plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "LightSpeed",
"homepage": "https://lightspeedwp.agency/"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"scripts": {
"phpcs": "phpcs --standard=WordPress .",
"phpcbf": "phpcbf --standard=WordPress .",
"phplint": "find . -name '*.php' -not -path './vendor/*' -not -path './node_modules/*' | xargs php -l"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true
}
}