Files
Heimdall/vendor/php-http/cache-plugin/composer.json
2025-07-11 15:57:48 +01:00

39 lines
1.1 KiB
JSON

{
"name": "php-http/cache-plugin",
"description": "PSR-6 Cache plugin for HTTPlug",
"license": "MIT",
"keywords": ["cache", "http", "httplug", "plugin"],
"homepage": "http://httplug.io",
"authors": [
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com"
}
],
"require": {
"php": "^7.1 || ^8.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"php-http/client-common": "^1.9 || ^2.0",
"psr/http-factory-implementation": "^1.0",
"symfony/options-resolver": "^2.6 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpspec/phpspec": "^5.1 || ^6.0 || ^7.0",
"nyholm/psr7": "^1.6.1"
},
"autoload": {
"psr-4": {
"Http\\Client\\Common\\Plugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Http\\Client\\Common\\Plugin\\": "spec/"
}
},
"scripts": {
"test": "vendor/bin/phpspec run",
"test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml"
}
}