initial commit

This commit is contained in:
2025-08-16 19:20:44 +02:00
commit e60ab9d7bc
2 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
vendor/

17
composer.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "nih/command-builder",
"description": "A (somewhat) simple command builder inspired by rust's std library",
"type": "library",
"autoload": {
"psr-4": {
"Nih\\CommandBuilder\\": "src/"
}
},
"authors": [
{
"name": "Jonas Kattendick",
"email": "kattendick@bde-software.com"
}
],
"require": {}
}