forked from ldvpublic/QualityCrowd2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·40 lines (40 loc) · 1.14 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
{
"name": "clho/qualitycrowd2",
"type": "project",
"description": "Web application for QoE testing and related tasks",
"homepage": "https://github.com/clorch/QualityCrowd2",
"license" : "BSD-3-Clause",
"authors": [
{
"name": "Clemens Horch",
"email": "[email protected]",
"homepage" : "http://www.clemenshorch.de/",
"role" : "Developer"
}
],
"autoload": {
"psr-4": { "Clho\\QualityCrowd\\": "core/lib/" }
},
"require": {
"php": ">=5.4.0",
"amenadiel/jpgraph" : "3.6.6",
"phpoffice/phpexcel": "1.8.0",
"michelf/php-markdown": "1.4.1",
"garetjax/phpbrowscap": "2.0",
"codemirror/CodeMirror": "5.0.0"
},
"repositories": [
{
"type": "package",
"package": {
"name": "codemirror/CodeMirror",
"version": "5.0.0",
"source": {
"url": "git://github.com/codemirror/CodeMirror.git",
"type": "git",
"reference": "5.0.0"
}
}
}
]
}