-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.06 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "statamic-rad-pack/meilisearch",
"description": "meilisearch search driver for Statamic",
"keywords": [
"statamic",
"meilisearch",
"search"
],
"homepage": "https://github.com/statamic-rad-pack/meilisearch",
"license": "MIT",
"authors": [
{
"name": "Daniel Shields",
"email": "daniel@karuna.co.za",
"homepage": "https://twitter.com/k4runa",
"role": "Developer"
},
{
"name": "Oliver Kaufmann",
"email": "okaufmann91@gmail.com",
"homepage": "https://twitter.com/okaufmannCH",
"role": "Co-Developer"
}
],
"require": {
"php": "^8.2",
"meilisearch/meilisearch-php": "^1.0",
"guzzlehttp/guzzle": "^7.3",
"http-interop/http-factory-guzzle": "^1.0",
"illuminate/support": "^12.0 || ^13.0",
"statamic/cms": "^6.0.0-beta.4"
},
"require-dev": {
"laravel/pint": "^1.21",
"orchestra/testbench": "^10.0 || ^11.0",
"phpunit/phpunit": "^11.5.10 || ^12.0",
"spatie/laravel-ray": "^1.43.6"
},
"autoload": {
"psr-4": {
"StatamicRadPack\\Meilisearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StatamicRadPack\\Meilisearch\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"format": "php-cs-fixer fix --allow-risky=yes"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"StatamicRadPack\\Meilisearch\\ServiceProvider"
]
},
"statamic": {
"name": "Meilisearch",
"description": "Meilisearch search driver for Statamic",
"developer": "Statamic Rad Pack"
}
},
"prefer-stable": true
}