mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-09 06:46:08 -06:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "barryvdh/laravel-stack-middleware",
|
|
"description": "Stack Middleware for Laravel 5",
|
|
"license": "MIT",
|
|
"keywords": ["laravel", "stack", "stackphp", "middleware"],
|
|
"authors": [
|
|
{
|
|
"name": "Barry vd. Heuvel",
|
|
"email": "barryvdh@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"illuminate/support": "^6|^7|^8|^9",
|
|
"symfony/http-kernel": "^4|^5|^6"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^4|^5|^6|^7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Barryvdh\\StackMiddleware\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Barryvdh\\StackMiddleware\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.2-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Barryvdh\\StackMiddleware\\ServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Stack": "Barryvdh\\StackMiddleware\\Facade"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|