-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (32 loc) · 873 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
{
"name": "solventt/csrf-protection",
"description": "PSR-15 compatible middleware implementing cross-site request forgery protection",
"type": "library",
"keywords": ["csrf","protection","security","psr-15", "middleware"],
"license": "BSD-3-Clause",
"authors": [{"name": "Chibizov Gr."}],
"require": {
"php": "^7.4 || ^8.0",
"psr/http-factory": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"slim/psr7": "^1.6",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.7"
},
"autoload": {
"psr-4": {
"Solventt\\Csrf\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Solventt\\Csrf\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}