forked from joomla/jissues
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.91 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
{
"name": "joomla/tracker",
"description": "Issue Tracking application built on the Joomla! Framework integrating with GitHub to replace the existing Joomlacode solution.",
"keywords": ["joomla", "tracker"],
"homepage": "https://github.com/joomla/jissues",
"license": "GPL-2.0+",
"version": "1.0.0-beta",
"require": {
"php": ">=5.4.4",
"joomla/application": ">=1.1.2@stable",
"joomla/controller": "~1.1@stable",
"joomla/database": "~1.1@stable",
"joomla/date": "~1.1@stable",
"joomla/di": "~1.1@stable",
"joomla/event": "~1.1@stable",
"joomla/filter": "~1.1@stable",
"joomla/github": "~1.1@stable",
"joomla/http": "~1.1@stable",
"joomla/input": "~1.1@stable",
"joomla/model": "~1.1@stable",
"joomla/profiler": "~1.1@stable",
"joomla/registry": "~1.1@stable",
"joomla/router": "~1.1@stable",
"joomla/string": "~1.1@stable",
"joomla/uri": "~1.1@stable",
"joomla/utilities": "~1.1@stable",
"joomla/view": "~1.1@stable",
"symfony/http-foundation": "2.4.*@stable",
"twig/twig": "1.*@stable",
"elkuku/g11n": "2.1",
"elkuku/console-progressbar": "1.0",
"babdev/library": "dev-master",
"codeguy/upload": "1.3.2",
"league/flysystem": "0.3.*"
},
"require-dev": {
"monolog/monolog": "1.*@stable",
"raveren/kint": "0.9",
"filp/whoops": "1.0.*@stable",
"mustache/mustache": "2.1.*@stable",
"phpunit/phpunit" : "3.7.*@stable",
"squizlabs/php_codesniffer": "1.*@stable",
"sebastian/phpcpd": "*",
"phploc/phploc": "*",
"clue/graph-composer": "*"
},
"autoload": {
"psr-4": {
"Joomla\\": "src/Joomla/",
"JTracker\\": "src/JTracker/",
"App\\": "src/App/"
}
},
"minimum-stability": "dev"
}