forked from brtriver/dbup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 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
34
35
36
{
"name": "brtriver/dbup",
"description": "simple migration tool with PDO",
"keywords": ["migration", "database"],
"homepage": "http://1ms.jp/",
"type": "library",
"require": {
"php": ">=5.4.0",
"ext-pdo": "*",
"symfony/console": "~2.5.0",
"symfony/finder": "~2.5.0",
"symfony/event-dispatcher": "~2.5.0",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "7.2.*",
"phake/phake": "v1.0.3",
"hamcrest/hamcrest-php": "1.2.0"
},
"suggest": {
"ext-pdo-mysql": "In order to use ikou with MySQL databases.",
"ext-pdo-pqsql": "In order to use ikou with PostgreSQL databases.",
"ext-pdo-sqlite": "In oreder to use ikou with SQLite Databases."
},
"license": "MIT",
"authors": [
{
"name": "Masao Maeda",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "Dbup": "src/" }
},
"bin": ["dbup"]
}