From 5e46d0db69bcd239b93afe95dc9bd4b01f21a43c Mon Sep 17 00:00:00 2001 From: ghost Date: Tue, 30 Apr 2024 00:48:25 +0300 Subject: [PATCH] init composer --- .gitignore | 2 ++ composer.json | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..94d6d75 --- /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..253d5f3 --- /dev/null +++ b/composer.json @@ -0,0 +1,24 @@ +{ + "name": "kevachat/npsapp", + "description": "KevaChat App for NPS Protocol", + "keywords": [ "kevachat", "kevacoin", "blockchain", "chat", "nps", "nps-protocol", "server" ], + "homepage": "https://github.com/kevachat/npsapp", + "type": "project", + "license": "MIT", + "autoload": { + "psr-4": { + "Kevachat\\Npsapp\\": "src/" + } + }, + "authors": [ + { + "name": "KevaChat" + } + ], + "require": { + "kevachat/kevacoin": "^1.10", + "gregwar/captcha": "^1.2", + "ixnode/php-cli-image": "^0.1.2", + "yggverse/nps": "^1.3" + } +}