mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-09 14:56:13 -06:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "barryvdh/laravel-httpcache",
|
|
"description": "HttpCache for Laravel",
|
|
"license": "MIT",
|
|
"keywords": ["laravel", "httpcache", "cache", "esi"],
|
|
"authors": [
|
|
{
|
|
"name": "Barry vd. Heuvel",
|
|
"email": "barryvdh@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"illuminate/support": "^6|^7|^8|^9",
|
|
"symfony/console": "^4|^5|^6",
|
|
"symfony/http-kernel": "^4|^5|^6",
|
|
"barryvdh/laravel-stack-middleware": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^4|^5|^6|^7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Barryvdh\\HttpCache\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Barryvdh\\HttpCache\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.3-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Barryvdh\\HttpCache\\ServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|