-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.15 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
{
"name": "pion/laravel-lelastico",
"license": "MIT",
"authors": [
{
"name": "Martin Kluska",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"illuminate/support": ">=5.5",
"illuminate/http": ">=5.5",
"illuminate/pagination": ">=5.5",
"illuminate/console": ">=5.5",
"elasticsearch/elasticsearch": "^7.17",
"erichard/elasticsearch-query-builder": "dev-collapse-and-improvments#9efe1b3a4491b8ca21b077d4d38ec8d53eeadd33",
"illuminate/validation": ">=5.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"overtrue/phplint": "^1.2"
},
"autoload": {
"psr-4": {
"Lelastico\\": "src/"
}
},
"scripts": {
"lint:fix": "./vendor/bin/php-cs-fixer fix --config=.php_cs --using-cache false",
"lint:check": "./vendor/bin/phplint",
"lint": "composer run-script lint:fix && composer run-script lint:check"
},
"extra": {
"laravel": {
"providers": [
"\\Lelastico\\LelasticoServiceProvider"
]
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/pionl/elasticsearch-query-builder.git"
}
]
}