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