commit e60ab9d7bc1339477929c2cb79922c05d68ca044 Author: Jonas Kattendick Date: Sat Aug 16 19:20:44 2025 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..48b8bf9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..51c6235 --- /dev/null +++ b/composer.json @@ -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": {} +}