-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 861 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 861 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
37
38
{
"name": "traq/traq",
"description": "Project management system",
"type": "project",
"config": {
"platform": {
"php": "8.3.0"
},
"preferred-install": {
"avalon/framework": "source"
}
},
"require-dev": {
"filp/whoops": "^2.18",
"phpstan/phpstan": "^2.1"
},
"license": "GPLv3",
"authors": [
{
"name": "Jack Polgar",
"email": "hello@jp.id.au"
}
],
"minimum-stability": "stable",
"require": {
"symfony/mailer": "^7.3",
"ramsey/uuid": "^4.7",
"avalon/framework": "dev-master",
"league/commonmark": "^2.7",
"google/recaptcha": "^1.3"
},
"autoload": {
"psr-4": {
"traq\\": "vendor/traq",
"Traq\\": "src/Traq"
}
}
}