]> git.joonet.de Git - adminer.git/commitdiff
Add Composer support
authorRob Loach <robloach@gmail.com>
Fri, 17 Oct 2014 06:48:40 +0000 (02:48 -0400)
committerJakub Vrana <jakub@vrana.cz>
Tue, 11 Nov 2014 16:41:58 +0000 (08:41 -0800)
.gitignore
composer.json [new file with mode: 0644]

index 087848fd48b68a77ad4d03e6fbff94d29297f4b3..2afb1ac59bc27f246683440d8ead8604ff90c1ad 100644 (file)
@@ -1,3 +1,4 @@
 /adminer/adminer.css
 /adminer*.php
 /editor*.php
+/vendor/
diff --git a/composer.json b/composer.json
new file mode 100644 (file)
index 0000000..ce32e77
--- /dev/null
@@ -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"
+    }
+}