forked from joomla/jissues
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 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
{
"name": "joomla/tracker",
"description": "Issue tracking application extending GitHub's issues and pull requests for the Joomla! project.",
"keywords": ["joomla", "tracker"],
"homepage": "https://github.com/joomla/jissues",
"license": "GPL-2.0+",
"version": "1.0.0-beta",
"require": {
"php": ">=7.2,<7.4",
"ext-curl": "*",
"ext-intl": "*",
"ext-json": "*",
"joomla/application": "^2.0",
"joomla/authentication": "^1.3",
"joomla/console": "^2.0",
"joomla/controller": "^2.0",
"joomla/database": "^1.7.1",
"joomla/date": "^1.2",
"joomla/di": "^2.0",
"joomla/event": "^2.0",
"joomla/filter": "^1.3.5",
"joomla/github": "^2.0",
"joomla/http": "^2.0",
"joomla/input": "^1.4",
"joomla/model": "^2.0",
"joomla/profiler": "^2.0",
"joomla/registry": "^2.0",
"joomla/renderer": "^2.0",
"joomla/router": "^2.0",
"joomla/string": "^2.0",
"joomla/uri": "^2.0",
"joomla/utilities": "^2.0",
"joomla/view": "^2.0",
"symfony/asset": "^5.0.8",
"symfony/cache": "^5.0.8",
"symfony/http-foundation": "^5.0.8",
"twig/twig": "^3.0.3",
"elkuku/console-progressbar": "^1.0",
"codeguy/upload": "1.3.2",
"filp/whoops": "^2.7.2",
"league/flysystem": "^1.0.69",
"monolog/monolog": "^2.1",
"kint-php/kint": "^3.3",
"adaptive/php-text-difference": "^1.0.3",
"laminas/laminas-diactoros": "^2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0.2",
"joomla/coding-standards": "dev-master",
"phpunit/phpunit": "^8.5.5",
"squizlabs/php_codesniffer": "^2.9.2",
"sebastian/phpcpd": "^4.1",
"phploc/phploc": "^5.0"
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-php55": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php72": "*"
},
"autoload": {
"psr-4": {
"JTracker\\": "src/JTracker/",
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"JTracker\\Tests\\": "tests/tracker/"
}
},
"config": {
"platform": {
"php": "7.2.30"
}
}
}