-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
94 lines (93 loc) · 2.16 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "bacularis/bacularis-web",
"type": "library",
"description": "Web files for Bacularis - The Bacula web interface",
"keywords": ["bacula", "backup", "restore", "bacularis", "bacularis-web"],
"homepage": "https://bacularis.app",
"license": "AGPL-3.0-only",
"authors": [
{
"name": "Marcin Haba",
"email": "marcin.haba@bacula.pl",
"homepage": "https://bacula.pl",
"role": "Developer"
},
{
"name": "Wanderlei Hüttel",
"email": "wanderlei.huttel@gmail.com",
"homepage": "https://www.huttel.com.br",
"role": "Translator"
},
{
"name": "Sergey Zhidkov",
"email": "zhsv@bk.ru",
"role": "Translator"
},
{
"name": "Ken Sawada",
"email": "ksawa0126@gmail.com",
"role": "Translator"
},
{
"name": "Seungwan Ryu",
"role": "Translator"
},
{
"name": "Joachim Legrand",
"email": "jlegrand@teicee.com",
"role": "Translator"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.4.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-ldap": "*",
"bower-asset/datatables.net": "^1",
"bower-asset/datatables.net-buttons": "^2",
"bower-asset/datatables.net-buttons-dt": "^2",
"bower-asset/datatables.net-dt": "^3",
"bower-asset/datatables.net-responsive": "^2",
"bower-asset/datatables.net-responsive-dt": "^2",
"bower-asset/datatables.net-select": "^1",
"bower-asset/fontawesome": "^6",
"bower-asset/gaugejs": "^1",
"bower-asset/jquery": "^3",
"bower-asset/jquery-ui": "^1",
"bower-asset/opentip": "^2",
"npm-asset/flotr2": "^0",
"npm-asset/qrcodejs": "^1",
"pradosoft/prado": "4.2.2",
"bacularis/bacularis-common": "*"
},
"require-dev": {
"phpstan/phpstan": "1.8.11",
"friendsofphp/php-cs-fixer": "^3"
},
"autoload": {
"psr-4": {
"Bacularis\\Web\\": "Web/"
}
},
"config": {
"vendor-dir": "protected/vendor"
},
"scripts": {
"analyse": [
"phpstan analyse Web",
"php-cs-fixer fix -vvv --dry-run --using-cache=no"
]
},
"support" : {
"issues" : "https://github.com/bacularis/bacularis-app/issues",
"source" : "https://github.com/bacularis",
"docs" : "https://bacularis.app/doc"
}
}