forked from statamic-rad-pack/meilisearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "elvenstar/statamic-meilisearch",
"description": "Statamic MeiliSearch addon",
"keywords": [
"spatie",
"laravel-ray"
],
"homepage": "https://github.com/elvenstar/statamic-meilisearch",
"license": "MIT",
"authors": [
{
"name": "Daniel Shields",
"email": "[email protected]",
"homepage": "https://twitter.com/k4runa",
"role": "Developer"
},
{
"name": "Oliver Kaufmann",
"email": "[email protected]",
"homepage": "https://twitter.com/okaufmannCH",
"role": "Co-Developer"
}
],
"require": {
"php": "^8.0",
"meilisearch/meilisearch-php": "^0.21|^0.22|^0.23|^0.24|^0.25",
"guzzlehttp/guzzle": "^7.3",
"http-interop/http-factory-guzzle": "^1.0",
"illuminate/support": "^8.0|^9.0",
"statamic/cms": "^3.1|^3.2|^3.3"
},
"require-dev": {
"orchestra/testbench-core": "^6.0|^7.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Elvenstar\\StatamicMeiliSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Elvenstar\\StatamicMeiliSearch\\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
}
},
"extra": {
"statamic": {
"name": "Statamic Meilisearch",
"description": "Statamic MeiliSearch addon"
},
"laravel": {
"providers": [
"Elvenstar\\StatamicMeiliSearch\\StatamicMeiliSearchServiceProvider"
]
}
}
}