-
Notifications
You must be signed in to change notification settings - Fork 95
/
composer.json
44 lines (44 loc) · 1.1 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
{
"authors": [
{
"email": "[email protected]",
"homepage": "https://github.com/ruckus/ruckusing-migrations/wiki",
"name": "Cody Caughlan",
"role": "Project lead / Developer"
}
],
"autoload": {
"psr-0": {
"Ruckusing": "lib/",
"Task": "lib/"
}
},
"bin": [
"ruckus.php"
],
"description": "Framework for generating and managing database migrations",
"homepage": "https://github.com/ruckus/ruckusing-migrations",
"keywords": [
"ruckusing",
"rake",
"migrations",
"database",
"mysql",
"postgres",
"task"
],
"license": "MIT",
"name": "ruckusing/ruckusing-migrations",
"require": {
"php": ">=5.2.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/ruckus/ruckusing-migrations/issues",
"source": "https://github.com/ruckus/ruckusing-migrations"
},
"type": "library"
}