-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
51 lines (51 loc) · 1.17 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
{
"name": "rcerljenko/laravel-jwt",
"description": "Simple JWT Auth for Laravel PHP Framework",
"license": "MIT",
"homepage": "https://github.com/rcerljenko/laravel-jwt",
"authors": [
{
"name": "Ricardo Cerljenko",
"email": "[email protected]",
"homepage": "https://github.com/rcerljenko"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": "^8.0",
"firebase/php-jwt": "^6.1",
"illuminate/auth": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/support": "^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8"
},
"autoload": {
"psr-4": {
"RCerljenko\\LaravelJwt\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"RCerljenko\\LaravelJwt\\LaravelJwtServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": "@php -r \"file_exists('.git/hooks/pre-commit') || link('pre-commit.sh', '.git/hooks/pre-commit');\"",
"check-format": "php-cs-fixer fix --dry-run",
"format": "php-cs-fixer fix"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": true
},
"minimum-stability": "dev",
"prefer-stable": true
}