-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.08 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
{
"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": {
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/security": "~2.3|~3.0",
"paragonie/random_compat": "~1.0|~2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5",
"twig/twig": "^1.24",
"ua-parser/uap-php": "^3.4"
},
"suggest": {
"ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
},
"autoload": {
"psr-4": { "Nelmio\\SecurityBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}