-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
{
"name": "upstash/vector",
"description": "An HTTP/REST based Vector DB client built on top of Upstash REST API.",
"keywords": [
"upstash",
"vector",
"php",
"sdk",
"ai",
"rag"
],
"version": "v0.1.5",
"homepage": "https://github.com/upstash/vector-php",
"license": "MIT",
"authors": [
{
"name": "Jorge Lapa",
"email": "[email protected]",
"role": "Software Engineer"
}
],
"require": {
"php": "^8.3",
"nyholm/psr7": "^1.8",
"php-http/discovery": "^1.20.0",
"psr/http-client": "^1.0.3",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^2.0.0"
},
"require-dev": {
"brianium/paratest": "^7.4",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^8.5",
"phpunit/phpunit": "^10.3.2",
"robiningelbrecht/phpunit-pretty-print": "^1.3",
"spatie/ray": "^1.28",
"symfony/http-client": "^7.2",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"Upstash\\Vector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Upstash\\Vector\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"paratest": "vendor/bin/paratest --no-coverage",
"paratest-coverage": "vendor/bin/paratest --coverage",
"test-unit": "vendor/bin/phpunit --testsuite=Unit --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}