-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
37 lines (37 loc) · 885 Bytes
/
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
{
"name": "jakyeru/larascord",
"description": "Larascord is a package that allows you to authenticate users in your Laravel application using Discord.",
"license": "MIT",
"autoload": {
"psr-4": {
"Jakyeru\\Larascord\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jakyeru\\Larascord\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jakye",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Jakyeru\\Larascord\\LarascordServiceProvider"
]
}
},
"require-dev": {
"orchestra/testbench": "^9"
},
"require": {
"php": "^8.2|^8.3",
"laravel/framework": "^11",
"guzzlehttp/guzzle": "^7.5",
"laravel/breeze": "^v2.0"
}
}