-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (46 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
{
"name": "velikonja/labby-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for retrieving database and assets from one stage to another.",
"keywords": ["sync", "database", "assets", "symfony", "bundle", "twig"],
"homepage": "https://github.com/matejvelikonja/LabbyBundle",
"license": "MIT",
"authors": [
{
"name": "Matej Velikonja",
"homepage": "https://github.com/matejvelikonja"
}
],
"require": {
"php": ">=5.3.9",
"symfony/framework-bundle": ">2.3.1",
"symfony/symfony": ">2.3.1",
"velikonja/sync-fs": "~0.2"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"squizlabs/php_codesniffer": "~2.0",
"phpmd/phpmd": "~2.1",
"sebastian/phpcpd": "~2.0",
"sensio/framework-extra-bundle": ">2.3",
"doctrine/doctrine-bundle": "^1.2",
"friendsofsymfony/user-bundle": "*",
"symfony/phpunit-bridge": "2.7.x-dev"
},
"autoload": {
"psr-0": {
"Velikonja\\LabbyBundle": ""
}
},
"target-dir": "Velikonja/LabbyBundle",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}