Skip to content

Commit 329e955

Browse files
committed
Initialized composer project
0 parents  commit 329e955

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
composer.lock
2+
.idea/
3+
vendor/

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "vladvildanov/predis-vl",
3+
"description": "Predis Vector Library (PredisVL) enables Redis as a real-time database for LLM applications, based on Predis PHP client",
4+
"type": "library",
5+
"license": "MIT",
6+
"require": {
7+
"php" : "^8.0",
8+
"guzzlehttp/guzzle": "*"
9+
},
10+
"require-dev": {
11+
"phpunit/phpunit": "*"
12+
},
13+
"autoload": {
14+
"psr-4": {
15+
"Vladvildanov\\PredisVl\\": "src/"
16+
}
17+
},
18+
"authors": [
19+
{
20+
"name": "vladvildanov",
21+
"email": "divinez122@outlook.com"
22+
}
23+
]
24+
}

0 commit comments

Comments
 (0)