-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
45 lines (45 loc) · 1.55 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": "webberzone/better-search",
"description": "Better Search replaces the default WordPress search with a better search engine that gives contextual results sorted by relevance",
"type": "wordpress-plugin",
"keywords": [
"search",
"better search",
"relevant search",
"search results",
"fulltext search"
],
"license": "gpl-2.0-or-later",
"authors": [
{
"name": "WebberZone",
"role": "Developer"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"szepeviktor/phpstan-wordpress": "^1",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"php-stubs/wordpress-stubs": "^6",
"wp-coding-standards/wpcs": "^3",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"phpcompatibility/phpcompatibility-wp": "^2",
"yoast/phpunit-polyfills": "^3",
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5 || ^8"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2048M",
"phpstan-baseline": "vendor/bin/phpstan analyse --memory-limit=2048M --generate-baseline",
"phpcs": "vendor/bin/phpcs -p -v -s --standard=phpcs.xml.dist $(find . -name '*.php')",
"phpcbf": "vendor/bin/phpcbf -p -v -s --standard=phpcs.xml.dist $(find . -name '*.php')"
}
}