-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 855 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 855 Bytes
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
{
"require": {
"php": ">=8.0.0",
"ext-curl": "*",
"ext-json": "*",
"doctrine/dbal": "^2.6",
"hashids/hashids": "^4.0",
"illuminate/database": "^8.0",
"illuminate/translation": "^8.0",
"matthiasmullie/minify": "^1.3",
"nesbot/carbon": "^2.31",
"phroute/phroute": "^2.1",
"predis/predis": "^1.1",
"symfony/console": "^5.3",
"twig/twig": "^3.0",
"wohali/oauth2-discord-new": "^1.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Miiverse\\": "src/"
},
"files": [
"utility.php"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"require-dev": {
"phpstan/phpstan": "^0.12"
}
}