-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.47 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.47 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
57
58
{
"name": "marcorieser/statamic-live-search",
"description": "A Statamic Live Search realized with Laravel Livewire.",
"keywords": [
"Statamic",
"Addon",
"Plugin",
"Livewire",
"Live",
"Search"
],
"license": "MIT",
"type": "statamic-addon",
"autoload": {
"psr-4": {
"MarcoRieser\\LiveSearch\\": "src"
}
},
"authors": [
{
"name": "Marco Rieser",
"homepage": "https://rieser.dev"
},
{
"name": "Jonas Siewertsen",
"homepage": "https://jonassiewertsen.com"
}
],
"support": {
"issues": "https://github.com/marcorieser/statamic-live-search/issues",
"docs": "https://github.com/marcorieser/statamic-live-search"
},
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"statamic/cms": "^4.23.2|^5.0|^6.0",
"marcorieser/statamic-livewire": "^4.0|^5.0"
},
"extra": {
"statamic": {
"name": "Live Search",
"description": "A Statamic Live Search realized with Laravel Livewire."
},
"laravel": {
"providers": [
"MarcoRieser\\LiveSearch\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"require-dev": {
"laravel/pint": "^1.29"
}
}