-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
51 lines (51 loc) · 1.04 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
{
"name": "probots-io/pinecone-php",
"description": "Unofficial PHP Client for Pinecone Vector Database (pinecone.io)",
"type": "library",
"homepage": "https://probots.io",
"keywords": [
"pinecone",
"vector",
"database",
"sdk",
"client"
],
"license": "MIT",
"authors": [
{
"name": "Marcus Pohorely",
"email": "marcus@probots.io"
}
],
"require": {
"php": "^8.2",
"saloonphp/saloon": "^3.6"
},
"autoload": {
"psr-4": {
"Probots\\Pinecone\\": "src/",
"Tests\\": "tests/"
}
},
"require-dev": {
"pestphp/pest": "^2.4",
"vlucas/phpdotenv": "^5.5",
"symfony/var-dumper": "^6.2",
"pestphp/pest-plugin-watch": "^2.0",
"pestphp/pest-plugin-faker": "^2.0",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"test": "pest",
"test:watch": "pest --watch"
},
"scripts-descriptions": {
"test": "Run the tests",
"test:watch": "Run the tests & watch for changes"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}