diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..55940e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/vendor/ +composer.lock \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..902aeb9 --- /dev/null +++ b/composer.json @@ -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/" + } + } +}