This repository was archived by the owner on Dec 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.29 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.29 KB
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
{
"name": "dunglas/angular-csrf-bundle",
"type": "symfony-bundle",
"description": "CSRF protection when using AngularJS with Symfony2",
"keywords": ["csrf", "xsrf", "security", "angular", "react", "vue.js"],
"homepage": "https://api-platform.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "dunglas@gmail.com",
"homepage": "https://dunglas.fr"
}
],
"require": {
"php": ">=7.0",
"symfony/config": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/security-csrf": "^3.4 || ^4.0"
},
"require-dev": {
"behat/behat": "^3.0",
"phpspec/phpspec": "^4.0",
"sebastian/comparator": "^1.2.4 || ^2.0",
"symfony/form": "^3.4 || ^4.0",
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/validator": "^3.4 || ^4.0",
"symfony/var-dumper": "^3.4 || ^4.0",
"symfony/twig-bundle": "^3.4 || ^4.0"
},
"autoload": {
"psr-4": {
"Dunglas\\AngularCsrfBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}