-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.5 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.5 KB
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
{
"name": "joomla/help-site",
"type": "project",
"description": "Application code for help.joomla.org",
"keywords": ["joomla"],
"homepage": "http://github.com/joomla/help.joomla.org",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.0",
"joomla/application": "^3.0",
"joomla/console": "^3.0",
"joomla/controller": "^3.0",
"joomla/di": "^3.0",
"joomla/event": "^3.0",
"joomla/filesystem": "^3.0",
"joomla/http": "^3.0",
"joomla/input": "^3.0",
"joomla/model": "^3.0",
"joomla/preload": "^3.0",
"joomla/registry": "^3.0",
"joomla/renderer": "^3.0",
"joomla/router": "^3.0",
"joomla/string": "^3.0",
"joomla/uri": "^3.0",
"joomla/view": "^3.0",
"monolog/monolog": "^2.1",
"symfony/asset": "^6.4.24",
"symfony/cache": "^6.4.24",
"symfony/process": "^6.4.24",
"symfony/web-link": "^6.4.24",
"twig/twig": "^3.22.0"
},
"require-dev": {
"php-debugbar/php-debugbar": "^2.2.4"
},
"autoload": {
"psr-4": {
"Joomla\\Help\\": "src/"
}
},
"replace": {
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php55": "*"
},
"config": {
"platform": {
"php": "8.1.18"
}
}
}