-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.19 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.19 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
{
"name": "soderlind/wp-loupe",
"type": "wordpress-plugin",
"description": "WP Loupe is a powerful search enhancement plugin for WordPress that delivers fast, accurate, and typo-tolerant search results. WP Loupe exposes a developer-friendly API so you can build your own search UI.",
"keywords": [
"wordpress-plugin",
"search-engine",
"searching",
"loupe",
"developer-friendly",
"typo-tolerant"
],
"homepage": "https://github.com/soderlind/wp-loupe",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Per Soderlind",
"email": "per@soderlind.no"
}
],
"require": {
"ext-PDO": "*",
"ext-pdo_sqlite": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"loupe/loupe": "~0.13.12",
"yahnis-elsts/plugin-update-checker": "~5.6"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
"brain/monkey": "^2.6",
"pestphp/pest": "^4.5"
},
"autoload": {
"psr-4": {
"Soderlind\\\\Plugin\\\\WPLoupe\\\\": "includes/"
},
"classmap": [
"includes/"
]
},
"autoload-dev": {
"psr-4": {
"WPLoupeTests\\\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "phpunit",
"test:pest": "pest -c phpunit.xml.dist"
}
}