-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 1020 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "ganeshkandu/kdbv",
"description": "mysql database auto schema migration tool ",
"keywords": ["composer","mysql","php","mysql-database","update","upgrade","upgrade-tool","database-migrations","versioning","version-control","version-changer","latest-version","mariadb","automation","autodeploy","schema","database","data","packagist"],
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Ganesh Kandu",
"email": "kanduganesh@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"ext-pdo": "*",
"ext-json": "*"
},
"support": {
"issues": "https://github.com/ganeshkandu/kdbv/issues",
"source": "https://github.com/ganeshkandu/kdbv"
},
"minimum-stability": "stable",
"autoload": {
"files": [
"src/table.php",
"src/btree.php",
"src/db.php",
"src/kdbv.php"
]
},
"bin": ["bin/kdbv"]
}