From febb13f868465236acb788e24c51414ae306a64f Mon Sep 17 00:00:00 2001 From: Kuba Turek Date: Mon, 20 Jan 2014 19:15:31 +0100 Subject: [PATCH] Added composer.json --- .gitignore | 1 + composer.json | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57872d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..57988b2 --- /dev/null +++ b/composer.json @@ -0,0 +1,14 @@ +{ + "name": "ospinto/dbug", + "description": "PHP version of ColdFusion's cfdump. Outputs colored and structured tabular variable information.", + "license": "GPL-3.0", + "authors": [ + { + "name": "Kwaku Otchere", + "email": "ospinto@hotmail.com" + } + ], + "autoload": { + "files": [ "dBug.php" ] + } +}