init composer

This commit is contained in:
yggverse 2024-04-26 18:00:44 +03:00
parent 8a5eab214f
commit e75b79780a
2 changed files with 23 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

21
composer.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "yggverse/next",
"description": "PHP 8 Server for Nex Protocol",
"keywords": [ "yggverse", "next", "nex", "nex-protocol", "server" ],
"homepage": "https://github.com/yggverse/pulsar",
"type": "project",
"require": {
"yggverse/nex": "^1.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Yggverse\\Next\\": "src/"
}
},
"authors": [
{
"name": "YGGverse"
}
]
}