mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-24 16:36:51 +00:00
41 lines
1 KiB
JSON
41 lines
1 KiB
JSON
{
|
|
"name": "slim/csrf",
|
|
"type": "library",
|
|
"description": "Slim Framework 4 CSRF protection PSR-15 middleware",
|
|
"keywords": ["slim","framework","middleware","csrf"],
|
|
"homepage": "http://slimframework.com",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Josh Lockhart",
|
|
"email": "hello@joshlockhart.com",
|
|
"homepage": "http://joshlockhart.com"
|
|
}
|
|
],
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"require": {
|
|
"php": "^7.3|^8.0",
|
|
"psr/http-factory": "^1.0",
|
|
"psr/http-message": "^1.0",
|
|
"psr/http-server-handler": "^1.0",
|
|
"psr/http-server-middleware": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"phpspec/prophecy": "^1.12",
|
|
"phpspec/prophecy-phpunit": "^2.0",
|
|
"phpunit/phpunit": "^9.5",
|
|
"squizlabs/php_codesniffer": "^3.5.8"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Slim\\Csrf\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Slim\\Csrf\\Tests\\": "tests"
|
|
}
|
|
}
|
|
}
|