From fe5a81fd08cebd4911a39a305a81637b5b1a6d9d Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Fri, 17 Oct 2014 02:48:40 -0400 Subject: [PATCH] Add Composer support --- .gitignore | 1 + composer.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index 087848fd..2afb1ac5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /adminer/adminer.css /adminer*.php /editor*.php +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..ce32e772 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "vrana/adminer", + "description": "Database management in a single PHP file.", + "homepage": "http://www.adminer.org/", + "keywords": [ + "database" + ], + "support": { + "issues": "http://sourceforge.net/p/adminer/bugs-and-features/", + "forum": "http://sourceforge.net/p/adminer/discussion/", + "source": "https://github.com/vrana/adminer/" + }, + "authors": [ + { + "name": "Jakub Vrána", + "homepage": "http://www.vrana.cz/" + } + ], + "autoload": { + "classmap": [ + "plugins/" + ] + }, + "license": [ + "Apache-2.0", + "GPL-2.0" + ], + "scripts": { + "compile": "php compile.php" + } +}