forked from dbsteward/dbsteward
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·49 lines (49 loc) · 1.2 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "nkiraly/dbsteward",
"description": "SQL database definition differencing tool. Structure and data is defined in a DTD-enforced, human-readable XML format. Outputs transactional SQL statement files to apply your changes.",
"keywords": ["database", "sql", "xml", "difference", "compare"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Nicholas Kiraly",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Austin Hyde",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Rusty Hamilton",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Bill Moran",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Adam Jette",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"ext-dom": "*",
"ext-pcre": "*",
"ext-pgsql": "*",
"ext-simplexml": "*",
"ext-spl": "*"
},
"require-dev": {
"ext-mysql": "*",
"ext-pgsql": "*",
"phing/phing": "2.7.*",
"pirum/pirum": "1.1.*",
"phpunit/phpunit": "4.4.*"
},
"bin": ["bin/dbsteward"]
}