forked from hkulekci/qdrant-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.14 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
{
"name": "your1/qdrant",
"description": "PHP Client for Qdrant",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": "^7.4",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/log": "^1.0|^2.0|^3.0",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery": "*",
"phpunit/php-code-coverage": "*"
},
"autoload": {
"psr-4": {
"Qdrant\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Qdrant\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Haydar Kulekci",
"email": "[email protected]"
},
{
"name": "Youri van den Bogert",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit --display-warnings --display-deprecations",
"coverage": "vendor/bin/phpunit --display-warnings --display-deprecations --coverage-html coverage/"
}
}