This repository has been archived by the owner on Sep 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
59 lines (59 loc) · 1.75 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "signifly/laravel-janitor",
"description": "Easily add login proxy to your Laravel API.",
"homepage": "https://github.com/signifly/laravel-janitor",
"license": "MIT",
"authors": [
{
"name": "Morten Poul Jensen",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^7.3|^7.4|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"illuminate/auth": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/http": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/routing": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0",
"laravel/passport": "^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"tymon/jwt-auth": "^1.0"
},
"suggest": {
"laravel/passport": "Required when using the passport proxy",
"tymon/jwt-auth": "Required when using the jwt proxy"
},
"autoload": {
"psr-4": {
"Signifly\\Janitor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Signifly\\Janitor\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Signifly\\Janitor\\JanitorServiceProvider"
],
"aliases": {
"Janitor": "Signifly\\Janitor\\Facades\\Janitor"
}
}
}
}