forked from mmoreram/ControllerExtraBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mmoreram/controller-extra-bundle",
"description": "Some specific controller features",
"keywords": [
"symfony2",
"controller",
"annotations",
"controller-extra-bundle"
],
"homepage": "https://github.com/mmoreram/ControllerExtraBundle",
"type": "symfony-bundle",
"license": "MIT",
"support": {
"email": "[email protected]",
"forum": "https://gitter.im/mmoreram/ControllerExtraBundle",
"source": "https://github.com/mmoreram/ControllerExtraBundle",
"issues": "https://github.com/mmoreram/ControllerExtraBundle/issues"
},
"authors": [
{
"name": "Marc Morera",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"doctrine/common": "~2.3",
"symfony/config": "~2.3",
"symfony/http-kernel": "~2.3",
"symfony/http-foundation": "~2.4",
"symfony/dependency-injection": "~2.3"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.2",
"doctrine/annotations": "~1.0, >=1.2",
"symfony/framework-bundle": "~2.4",
"symfony/finder": "~2.3",
"symfony/validator": "~2.3",
"symfony/browser-kit": "~2.3",
"phpunit/phpunit": ">=3.7",
"mmoreram/php-formatter": "~1.0",
"symfony/monolog-bundle": "~2.3",
"doctrine/orm": "~2.3",
"symfony/form": "~2.3",
"pagerfanta/pagerfanta": "~1.0"
},
"suggest": {
"symfony/monolog-bundle": "to use the @Log annotation",
"symfony/form": "to use the @Form annotation",
"doctrine/orm": "to use the @Paginator annotation",
"white-october/pagerfanta-bundle": "to use the @Paginator annotation with Pagerfanta support"
},
"autoload": {
"psr-4": {
"Mmoreram\\ControllerExtraBundle\\": ""
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}