init composer

This commit is contained in:
ghost 2024-04-30 00:48:25 +03:00
parent 2d1178cb31
commit 5e46d0db69
2 changed files with 26 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

24
composer.json Normal file
View File

@ -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"
}
}