-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1.01 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": "maxchene/kirby3-typesense",
"homepage": "https://github.com/maxchene/kirby3-typesense",
"description": "Kirby plugin that use typesense for quick search",
"license": "MIT",
"type": "kirby-plugin",
"version": "1.0.2",
"authors": [
{
"name": "Maxime CHENE",
"email": "maxime@kaliel.fr"
}
],
"require": {
"php": ">=8.1",
"getkirby/composer-installer": "^1.1"
},
"autoload": {
"psr-4": {
"Maxchene\\Typesense\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "typesense"
},
"keywords": [
"kirby",
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"typesense",
"fulltext",
"search"
],
"require-dev": {
"symfony/var-dumper": "^6.2",
"getkirby/cli": "^1.1"
}
}