-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 loc) · 1.22 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
{
"name": "modera/security-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "Provides database aware implementation of Security model + some other perks",
"authors": [
{
"name": "Sergei Vizel",
"email": "[email protected]"
},
{
"name": "Sergei Lissovski",
"email": "[email protected]",
"homepage": "http://sergei.lissovski.org/"
}
],
"require": {
"php": ">=7.4",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^2.0",
"symfony/validator": "^4.4|^5.0",
"symfony/security-bundle": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"modera/foundation-bundle": "^4.0",
"modera/translations-bundle": "^4.0",
"sergeil/extjsintegration-bundle": "^2.3|^3.0"
},
"require-dev": {
"phake/phake": "^4.0",
"phpunit/phpunit": "^6.5",
"modera/foundation-bundle": "^4.0",
"modera/languages-bundle": "^4.0"
},
"autoload": {
"psr-4": { "Modera\\SecurityBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}