-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
executable file
·43 lines (43 loc) · 1.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "jshannon63/laravel-psr15-middleware",
"description": "Allows the Use of PSR-15 Compliant Middleware in Laravel",
"keywords": ["middleware", "PSR-15", "Laravel"],
"license": "MIT",
"authors": [
{
"name": "Jim Shannon",
"email": "jim@hltky.com"
}
],
"require": {
"php": "^7.3",
"symfony/psr-http-message-bridge": "^2",
"psr/http-server-middleware": "^1.0",
"nyholm/psr7": "^1.3"
},
"require-dev": {
"illuminate/http": "^5.5|^6|^7",
"illuminate/container": "^5.5|^6|^7",
"illuminate/config": "^5.5|^6|^7",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Jshannon63\\Psr15Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Jshannon63\\Psr15Middleware\\Psr15MiddlewareServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}