From 409aab9ef62e6452cd35ac97b16d8a328ea06b03 Mon Sep 17 00:00:00 2001 From: joselucross Date: Fri, 22 Sep 2017 00:29:58 +0200 Subject: [PATCH] Add composer.json --- composer.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3c22225 --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "jkanetwork/dbwrapper", + "type": "library", + "description": "MySQL, PgSQL and SQLite wrapper", + "keywords": ["mysql", "PgSQL", "sqlite", "wrapper"], + "license": "APACHE", + "authors": [ + {"name": "Kevin Puertas Ruiz", "email": "kevin01010@gmail.com"} + ], + "require": { + "php": "^7.1" + }, + "autoload": { + "psr-0": { "DBWrapper": "src/" } + } +}