-
Notifications
You must be signed in to change notification settings - Fork 80
/
composer.json
83 lines (83 loc) · 2.58 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
{
"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": ">=8.1,<8.3",
"ext-curl": "*",
"ext-intl": "*",
"ext-json": "*",
"joomla/application": "^3.0",
"joomla/authentication": "^3.0",
"joomla/console": "^3.0",
"joomla/controller": "^3.0",
"joomla/database": "^3.0",
"joomla/date": "^2.0",
"joomla/di": "^3.0",
"joomla/event": "^3.0",
"joomla/filter": "^3.0",
"joomla/github": "^3.0",
"joomla/http": "^3.0",
"joomla/input": "^3.0",
"joomla/model": "^3.0",
"joomla/profiler": "^3.0",
"joomla/registry": "^3.0",
"joomla/renderer": "^3.0",
"joomla/router": "^3.0",
"joomla/string": "^3.0",
"joomla/uri": "^3.0",
"joomla/utilities": "^3.0",
"joomla/view": "^3.0",
"symfony/asset": "^6.4.0",
"symfony/cache": "^6.4.0",
"symfony/http-foundation": "^6.4.0",
"twig/twig": "^3.8.0",
"codeguy/upload": "1.3.2",
"filp/whoops": "^2.15.4",
"league/flysystem": "^3.22.0",
"monolog/monolog": "^3.5",
"kint-php/kint": "^5.1",
"adaptive/php-text-difference": "^1.1.0",
"laminas/laminas-diactoros": "^2.24"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51.0",
"squizlabs/php_codesniffer": "^3.9.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpunit/phpunit": "^9.6.11",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "1.12.12",
"phpstan/phpstan-phpunit": "1.4.1",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-php55": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php72": "*"
},
"autoload": {
"psr-4": {
"JTracker\\": "src/JTracker/",
"App\\": "src/App/"
}
},
"bin": ["bin/jtracker"],
"autoload-dev": {
"psr-4": {
"JTracker\\Tests\\": "tests/tracker/"
}
},
"config": {
"platform": {
"php": "8.1.24"
},
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}