-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 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
39
40
41
42
43
44
{
"name": "opctim/symfony-csp-bundle",
"description": "This bundle helps to properly secure your application using the CSP header in a symfony application.",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": ">=7.4.33",
"ext-openssl": "*",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0"
},
"suggest": {
"twig/twig": "For using the csp_nonce() method in templates."
},
"authors": [
{
"name": "@opctim / Tim Nelles",
"email": "[email protected]",
"homepage": "https://github.com/opctim",
"role": "Developer"
},
{
"name": "@alaugks / André Laugks",
"email": "[email protected]",
"homepage": "https://github.com/alaugks",
"role": "Contributor"
}
],
"autoload": {
"psr-4": {
"Opctim\\CspBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Opctim\\CspBundle\\Tests\\": "tests/src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/yaml": "^5.4",
"twig/twig": "^3.9"
}
}