-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
50 lines (50 loc) · 1.37 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
{
"name": "hkulekci/qdrant",
"description": "PHP Client for Qdrant",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/log": "^1.0|^2.0|^3.0",
"webmozart/assert": "^1.11",
"psr/http-factory": "^1.0",
"php-http/discovery": "^1.19",
"psr/http-factory-implementation": "^1.0",
"psr/http-client-implementation": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"phpunit/php-code-coverage": "^10.1@dev",
"symfony/http-client": "^6.4.3|^7.1.0",
"nyholm/psr7": "^1.8@dev",
"php-http/mock-client": "1.x-dev"
},
"autoload": {
"psr-4": {
"Qdrant\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Qdrant\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Haydar Kulekci",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit --display-warnings --display-deprecations",
"coverage": "vendor/bin/phpunit --display-warnings --display-deprecations --coverage-html coverage/"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}