init composer

This commit is contained in:
ghost 2024-02-12 03:23:46 +02:00
parent 43ff7fbd76
commit 1f7f210617
2 changed files with 16 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/vendor/
composer.lock

14
composer.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "kvazar/index",
"description": "Manticore Database API",
"type": "library",
"require": {
"manticoresoftware/manticoresearch-php": "^3.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Kvazar\\Index\\": "src/"
}
}
}