forked from kuborgh/data-transfer-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
31 lines (31 loc) · 888 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
{
"name": "acrnogor/data-transfer-bundle",
"type": "library",
"description": "Console Commands to easily transfer live data (database + files) to another environment",
"keywords": ["library","command","database","transfer","files"],
"homepage": "https://github.com/acrnogor/data-transfer-bundle",
"license": "MIT",
"authors": [
{
"name": "Hannes Giesenow",
"email": "[email protected]"
},
{
"name": "Ante Crnogorac",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"symfony/console": "*",
"symfony/process": "*"
},
"require-dev": {
"symfony/console": "*"
},
"autoload": {
"psr-0": { "Acrnogor\\DataTransferBundle": "" }
},
"minimum-stability": "dev",
"target-dir": "Acrnogor/DataTransferBundle"
}