forked from ngabor84/laravel-escher-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.3 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
44
45
46
47
48
{
"name": "ngabor84/laravel-escher-auth",
"description": "Escher authentication middleware for the Laravel and Lumen framework",
"keywords": ["laravel", "lumen", "auth", "escher"],
"homepage": "https://github.com/ngabor84/laravel-escher-auth",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Gabor Nemeth",
"email": "negabor@gmail.com"
}
],
"require": {
"php": "^8.1",
"firebase/php-jwt": "^v6.5",
"illuminate/support": "^v10.13",
"symfony/http-foundation": "^v6.3",
"symfony/http-kernel": "^v6.3",
"emartech/escher": "^4.0",
"ext-json": "*"
},
"require-dev": {
"laravel/framework": "^v10.13",
"laravel/lumen-framework": "^10.0",
"phpunit/phpunit": "^10.2",
"orchestra/testbench": "^v8.5"
},
"autoload": {
"psr-4": {
"Middleware\\Auth\\Escher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Middleware\\Auth\\Escher\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Middleware\\Auth\\Escher\\Providers\\LaravelServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}