-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.22 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
{
"name": "discodian/core",
"description": "The Discord bot toolkit for modern php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniël Klabbers",
"email": "daniel@klabbers.email",
"homepage": "https://luceos.com"
}
],
"require": {
"php": ">= 7.1",
"illuminate/support": "5.5.*",
"illuminate/cache": "5.5.*",
"illuminate/config": "5.5.*",
"illuminate/container": "5.5.*",
"illuminate/console": "5.5.*",
"illuminate/database": "5.5.*",
"illuminate/events": "5.5.*",
"illuminate/filesystem": "5.5.*",
"illuminate/view": "5.5.*",
"symfony/console": "^3.3.12",
"vlucas/phpdotenv": "^2.4.0",
"guzzlehttp/guzzle": "^6.3.0",
"symfony/http-foundation": "^3.3.12",
"ratchet/pawl": "^0.3.1",
"monolog/monolog": "^1.23.0",
"react/event-loop": "0.4.*",
"discodian/parts": "*",
"discodian/extend": "*"
},
"autoload": {
"psr-4": {
"Discodian\\Core\\": "src/"
},
"files": [
"helpers.php"
]
},
"config": {
"sort-packages": true
}
}