Add Composer support
This commit is contained in:
parent
fe76c6b887
commit
fe5a81fd08
2 changed files with 32 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
/adminer/adminer.css
|
||||
/adminer*.php
|
||||
/editor*.php
|
||||
/vendor/
|
||||
|
|
31
composer.json
Normal file
31
composer.json
Normal file
|
@ -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"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue