From e2624bfac1eeecc1d766df50e9ec87ddcd2bbbf4 Mon Sep 17 00:00:00 2001 From: Ivan Kurnosov Date: Wed, 9 Jan 2013 22:12:03 +1300 Subject: [PATCH] Initial composer.json version --- .gitignore | 1 + composer.json | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 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..a72d41b --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "colshrapnel/safemysql", + "description": "A real safe and convenient way to handle MySQL queries.", + "type": "library", + "version": "0.0.1", + "keywords": [ + "db", + "mysql" + ], + "homepage": "https://github.com/colshrapnel/safemysql", + "license": "Apache-2.0", + "authors": [ + { + "name": "Colonel Shrapnel", + "email": "specify.me.please@gmail.com", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/colshrapnel/safemysql/issues" + }, + "require": { + "php": ">=5.0.0", + "ext-mysqli": "*" + }, + "autoload": { + "files": ["safemysql.class.php"] + } +}