From e60ab9d7bc1339477929c2cb79922c05d68ca044 Mon Sep 17 00:00:00 2001 From: Jonas Kattendick Date: Sat, 16 Aug 2025 19:20:44 +0200 Subject: [PATCH] initial commit --- .gitignore | 1 + composer.json | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json 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": {} +}