-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (56 loc) · 1.68 KB
/
composer.json
File metadata and controls
57 lines (56 loc) · 1.68 KB
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
{
"name": "yarhon/route-guard-bundle",
"description": "Symfony route authorization checker",
"keywords": ["symfony", "security", "authorization", "routing", "twig"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yaroslav Honcharuk",
"email": "yaroslav.xs@gmail.com"
}
],
"require": {
"php": "^5.6||^7.0",
"symfony/http-kernel": "^3.3||^4.0",
"symfony/http-foundation": "^3.3||^4.0",
"symfony/dependency-injection": "^3.3||^4.0",
"symfony/config": "^3.3||^4.0",
"symfony/routing": "^3.3||^4.0",
"symfony/security": "^3.3||^4.0",
"symfony/cache": "^3.3||^4.0",
"doctrine/annotations": "^1.3",
"psr/log": "^1.0",
"symfony/framework-bundle": "^3.3||^4.0",
"symfony/security-bundle": "^3.3||^4.0"
},
"require-dev": {
"sensio/framework-extra-bundle": "^5.1",
"symfony/expression-language": "^3.3||^4.0",
"symfony/twig-bundle": "^3.3||^4.0",
"symfony/monolog-bundle": "^3.1",
"symfony/yaml": "^3.3||^4.0",
"symfony/browser-kit": "^3.3||^4.0"
},
"conflict": {
"sensio/framework-extra-bundle": "<5.1",
"symfony/expression-language": "<3.3",
"symfony/twig-bundle": "<3.3",
"twig/twig": "<1.35"
},
"suggest": {
"ext-opcache": "Improves performance"
},
"autoload": {
"psr-4": { "Yarhon\\RouteGuardBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}