forked from bacula-web/bacula-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 2.32 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
95
96
97
98
99
100
101
102
103
{
"name": "bacula-web/bacula-web",
"type": "project",
"description": "The open source web based reporting and monitoring tool for Bacula",
"keywords": [
"php",
"reporting",
"monitoring",
"bacula"
],
"homepage": "https://www.bacula-web.org",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Davide Franco",
"email": "[email protected]",
"homepage": "https://www.bacula-web.org",
"role": "Developer"
}
],
"config": {
"component-dir": "vendor/components",
"allow-plugins": {
"composer/installers": true,
"robloach/component-installer": true,
"oomphinc/composer-installers-extender": true
}
},
"require": {
"php": "^8.0|^8.1|^8.2",
"ext-gettext": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-sqlite3": "*",
"ext-posix": "*",
"novus/nvd3": "@stable",
"components/font-awesome": "6.*",
"vlucas/valitron": "^1.4",
"cocur/human-date": "^0.1.0",
"pear/date_humandiff": "^0.5.0",
"vlucas/phpdotenv": "^5.5",
"php-di/php-di": "^7.0",
"twbs/bootstrap": "5.2.3",
"slim/slim": "4.*",
"guzzlehttp/psr7": "^2",
"odan/session": "^6.1",
"slim/twig-view": "^3.3",
"symfony/translation": "^6.0",
"symfony/twig-bridge": "^6.0"
},
"require-dev": {
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "@stable",
"friendsofphp/php-cs-fixer": "@stable",
"phpunit/phpunit": "9.5.26"
},
"autoload": {
"psr-4": {
"Core\\": "core/",
"App\\": "application/"
},
"classmap": [
"core",
"application"
],
"files": [
"core/helpers/request.php"
]
},
"scripts": {
"post-install-cmd": [
"php bwc publishAssets"
],
"post-update-cmd": [
"php bwc publishAssets"
],
"post-create-project-cmd": [
"php bwc publishAssets"
]
},
"archive": {
"exclude": [
"/docs/source",
"/docs/requirements.txt",
"/docs/Makefile",
".gitignore",
".eslintrc.yml",
".codeclimate.yml",
".eslintignore",
".csslintrc",
".phpcs.xml",
"sonar-project.properties",
".github",
".readthedocs.yaml",
".tx",
"phpunit.xml",
"/tests",
".release-please-manifest.json",
"release-please-config.json"
]
}
}