This repository has been archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
56 lines (56 loc) · 1.63 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
{
"name": "meilisearch/meilisearch-laravel-scout",
"description": "Laravel Scout custom engine for MeiliSearch",
"keywords": ["meilisearch", "laravel", "scout", "search"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jordan Massart",
"email": "[email protected]"
}
],
"scripts": {
"lint": [
"./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --config=./.php_cs.dist --show-progress=estimating --dry-run --using-cache=yes"
],
"lint:fix": [
"./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --config=./.php_cs.dist --diff --show-progress=estimating --using-cache=no"
],
"test": [
"./vendor/bin/phpunit --coverage-text --color"
]
},
"require": {
"php": "^7.2|^8.0",
"laravel/scout": "^8.0",
"meilisearch/meilisearch-php": "^0.17",
"http-interop/http-factory-guzzle": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.5|^9.5",
"friendsofphp/php-cs-fixer": "^2.16",
"guzzlehttp/guzzle": "^7.2"
},
"autoload": {
"psr-4": {
"Meilisearch\\Scout\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Meilisearch\\Scout\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Meilisearch\\Scout\\MeilisearchServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}