diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..05388a6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/vendor/ + +composer.lock \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f8d3f80 --- /dev/null +++ b/composer.json @@ -0,0 +1,15 @@ +{ + "name": "kvazar/crawler", + "description": "KVAZAR Index Crawler", + "type": "project", + "require": { + "kvazar/index": "dev-main", + "kevachat/kevacoin": "^1.6" + }, + "license": "MIT", + "autoload": { + "psr-4": { + "Kvazar\\Crawler\\": "src/" + } + } +}