-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 998 Bytes
/
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
{
"name": "escavador/vespa-php",
"description": "PHP Client for Vespa",
"keywords": [
"laravel",
"client",
"vespa",
"search",
"engine",
"bigdata"
],
"license": "GPL-3.0",
"type": "library",
"authors": [
{
"name": "Ícaro Jerry",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/escavador/vespa-php/issues"
},
"require": {
"php": "^8.2",
"ext-json": ">=1.3.7",
"guzzlehttp/ringphp": "~1.0",
"guzzlehttp/guzzle": ">=6.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"Escavador\\Vespa\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Escavador\\Vespa\\VespaServiceProvider"
]
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml"
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}