all-in-one/php/vendor/slim/csrf/composer.json

42 lines
1 KiB
JSON
Raw Normal View History

2021-11-30 11:20:42 +01:00
{
"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"
}
}
}