-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
78 lines (76 loc) · 2.67 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mmoreram/controller-extra-bundle",
"description": "Some specific controller annotations",
"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": ">=7.1",
"doctrine/common": "^2.5",
"symfony/config": "^3.2 || ^4.0",
"symfony/http-kernel": "^3.2 || ^4.0",
"symfony/http-foundation": "^3.2 || ^4.0",
"symfony/dependency-injection": "^3.2 || ^4.0",
"mmoreram/base-bundle": "^1.0.3",
"mmoreram/symfony-bundle-dependencies": "^2.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.6.4",
"doctrine/annotations": "^1.2",
"doctrine/orm": "^2.5.6",
"symfony/yaml": "^3.2 || ^4.0",
"symfony/translation": "^3.2 || ^4.0",
"symfony/validator": "^3.2 || ^4.0",
"symfony/browser-kit": "^3.2 || ^4.0",
"symfony/form": "^3.2 || ^4.0",
"symfony/monolog-bundle": "^3.0",
"pagerfanta/pagerfanta": "~1.0",
"knplabs/knp-paginator-bundle": "^2.5",
"mmoreram/simple-doctrine-mapping": "^1.2",
"phpunit/phpunit": "^5.6.4",
"friendsofphp/php-cs-fixer": "^1.12.4",
"mmoreram/php-formatter": "^1.3.1"
},
"suggest": {
"symfony/monolog-bundle": "To use the @Log annotation",
"symfony/form": "To use the @Form annotation",
"doctrine/orm": "To use the @Paginator annotation",
"pagerfanta/pagerfanta": "To use the @Paginator annotation with Pagerfanta support",
"knplabs/knp-paginator-bundle": "To use the @Paginator annotation with KNPPaginator support"
},
"autoload": {
"psr-4": {
"Mmoreram\\ControllerExtraBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"fix-code": [
"vendor/bin/php-cs-fixer fix --config-file=.php_cs",
"vendor/bin/php-formatter f:h:f . --exclude=vendor",
"vendor/bin/php-formatter f:s:f . --exclude=vendor",
"vendor/bin/php-formatter f:u:s . --exclude=vendor"
],
"test": "vendor/bin/phpunit"
}
}