-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
70 lines (70 loc) · 1.93 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
68
69
70
{
"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": "[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.1",
"meilisearch/meilisearch-php": "^1.0",
"guzzlehttp/guzzle": "^7.3",
"http-interop/http-factory-guzzle": "^1.0",
"illuminate/support": "^10.0 || ^11.0",
"statamic/cms": "^5.0"
},
"require-dev": {
"laravel/pint": "^1.17",
"orchestra/testbench": "^8.14 || ^9.0",
"phpunit/phpunit": "^10.0"
},
"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"
}
}
}