-
-
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) · 849 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 849 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.1",
"ext-curl": "*",
"ext-json": "*",
"doctrine/dbal": "^3.7.1",
"hashids/hashids": "^5.0",
"illuminate/database": "^10.0",
"illuminate/translation": "^10.0",
"matthiasmullie/minify": "^1.3",
"nesbot/carbon": "^2.31",
"phroute/phroute": "^2.1",
"predis/predis": "^2.0",
"spatie/array-to-xml": "^3.2",
"symfony/console": "^6.0",
"twig/twig": "^3.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Miiverse\\": "src/"
},
"files": [
"utility.php"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"require-dev": {
"phpstan/phpstan": "^1.0"
}
}