forked from jeroenherczeg/laravel-scout-solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·59 lines (59 loc) · 1.47 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
{
"name": "abettini/laravel-scout-solr",
"type": "library",
"description": "Solr Driver for Laravel Scout",
"keywords": ["laravel", "scout", "solr"],
"homepage": "https://github.com/jeroenherczeg/laravel-scout-solr",
"license": "MIT",
"authors": [
{
"name": "Jeroen Herczeg",
"email": "jeroen@herczeg.be",
"homepage": "https://herczeg.be",
"role": "Developer"
},
{
"name": "Andrea Bettini",
"email": "andrea.bettini@jointly.pro",
"homepage": "https://bettini.dev",
"role": "Developer"
}
],
"require": {
"php": ">=7.3",
"laravel/scout": "^9.4",
"solarium/solarium": "^6.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"ScoutEngines\\Solr\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ScoutEngines\\Solr\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "php-cs-fixer fix --diff --dry-run",
"fix": "@php vendor/bin/php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"ScoutEngines\\Solr\\SolrProvider"
]
}
},
"config": {
"sort-packages": true
}
}