forked from nelmio/NelmioSecurityBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.44 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
{
"name": "nelmio/security-bundle",
"description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
"keywords": ["security"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nelmio",
"homepage": "http://nelm.io"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
}
],
"require": {
"php": ">5.4",
"paragonie/random_compat": "~1.0|~2.0|9.99.99",
"symfony/framework-bundle": "~2.3|~v3.0|~4.0|~5.0",
"symfony/security-core": "~2.3|~3.0|~4.0|~5.0",
"symfony/security-http": "~2.3|~3.0|~4.0|~5.0",
"symfony/security-csrf": "~2.3|~3.0|~4.0|~5.0",
"symfony/yaml": "~2.3|~3.0|~4.0|~5.0",
"ua-parser/uap-php": "^3.4.4"
},
"require-dev": {
"doctrine/cache": "^1.0",
"psr/cache": "^1.0",
"twig/twig": "^1.38|^2.10|^3.0",
"symfony/phpunit-bridge": "^5.0.5"
},
"suggest": {
"ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
},
"autoload": {
"psr-4": { "Nelmio\\SecurityBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.9.x-dev"
}
}
}