forked from dneustadt/DneustadtCsrfCookieBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 816 Bytes
/
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": "dneustadt/csrf-cookie-bundle",
"type": "symfony-bundle",
"description": "CSRF protection cookie for use with XHR",
"keywords": [
"csrf",
"xsrf",
"security",
"angular",
"react",
"vue.js",
"axios",
"ajax",
"xhr"
],
"homepage": "https://neustadt.dev",
"license": "MIT",
"authors": [
{
"name": "David Neustadt",
"email": "[email protected]",
"homepage": "https://neustadt.dev"
}
],
"require": {
"php": ">=7.2.5",
"symfony/config": "^5.0 || ^6.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/http-foundation": "^5.0 || ^6.0",
"symfony/http-kernel": "^5.0 || ^6.0",
"symfony/security-csrf": "^5.0 || ^6.0"
},
"autoload": {
"psr-4": {
"Dneustadt\\CsrfCookieBundle\\": ""
}
}
}