Initial commit

This commit is contained in:
2025-03-12 16:15:15 +01:00
commit c4877471f8
10 changed files with 1388 additions and 0 deletions

31
composer.json Normal file
View File

@ -0,0 +1,31 @@
{
"name": "slotdb/cli",
"description": "SlotDB command line client",
"type": "application",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"SlotDb\\Cli\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "labs@noccy.com"
}
],
"require": {
"slotdb/client": "@dev",
"guzzlehttp/guzzle": "^7.9",
"symfony/console": "^7.2"
},
"repositories": {
"slotdb-client": {
"type": "vcs",
"url": "../slotdb-client-php"
}
},
"bin": [
"bin/slotcli"
]
}