-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
54 lines (54 loc) · 1.31 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
{
"name": "laracord/framework",
"type": "package",
"description": "The Laracord Framework.",
"keywords": ["framework", "laravel", "discord"],
"license": "MIT",
"homepage": "https://laracord.com",
"authors": [
{
"name": "Brandon Nifong",
"email": "[email protected]",
"homepage": "https://github.com/log1x"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.5",
"illuminate/cookie": "^11.0",
"illuminate/database": "^11.0",
"illuminate/encryption": "^11.0",
"illuminate/hashing": "^11.0",
"illuminate/http": "^11.0",
"illuminate/queue": "^11.0",
"illuminate/routing": "^11.0",
"illuminate/session": "^11.0",
"illuminate/translation": "^11.0",
"illuminate/validation": "^11.0",
"illuminate/view": "^11.0",
"intonate/tinker-zero": "^1.2",
"laravel-zero/framework": "^11.0",
"laravel/sanctum": "^4.0",
"react/async": "^4.2",
"react/http": "^1.9",
"symfony/psr-http-message-bridge": "^7.0",
"team-reflex/discord-php": "v10.0.0-RC11"
},
"require-dev": {
"laravel/pint": "^1.15"
},
"autoload": {
"psr-4": {
"Laracord\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}