forked from schmittjoh/JMSSecurityExtraBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.84 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": "jms/security-extra-bundle",
"description": "Enhances the Symfony2 Security Component by adding several new features",
"keywords": ["annotations","authorization","expression","secure","security"],
"homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
"type": "symfony-bundle",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"symfony/framework-bundle": "~3.4",
"symfony/security-bundle": "~3.4",
"symfony/security-acl": "~3.0",
"symfony/dependency-injection": "~3.4",
"symfony/routing": "~3.4",
"jms/metadata": "~1.0",
"jms/parser-lib": "~1.0",
"jms/aop-bundle": "~1.0"
},
"suggest": {
"jms/di-extra-bundle": "Add extra DependencyInjection functionality"
},
"require-dev": {
"sensio/framework-extra-bundle": "~3.0",
"symfony/class-loader": "~3.4",
"symfony/yaml": "~3.4",
"symfony/browser-kit": "~3.4",
"symfony/finder": "~3.4",
"symfony/css-selector": "~3.4",
"symfony/process": "~3.4",
"doctrine/doctrine-bundle": "~1.0",
"symfony/twig-bundle": "~3.4",
"symfony/twig-bridge": "~3.4",
"twig/twig": "^1.23.1",
"doctrine/orm": "~2.3",
"doctrine/common": "~2.3",
"symfony/form": "~3.4",
"symfony/validator": "~3.4",
"symfony/phpunit-bridge": "~3.4",
"jms/di-extra-bundle": "~1.4",
"symfony/templating": "~3.4",
"symfony/var-dumper": "~3.4",
"symfony/asset": "~3.4"
},
"autoload": {
"psr-4": { "JMS\\SecurityExtraBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.7-dev"
}
}
}