This repository was archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.5 KB
/
composer.json
File metadata and controls
56 lines (56 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
55
56
{
"name": "movlib/www",
"description": "MovLib, the free movie library.",
"homepage": "https://movlib.org/",
"keywords": [ "MovLib" ],
"license": "AGPL-3.0",
"type": "project",
"config": {
"vendor-dir": "lib"
},
"authors": [
{
"name": "Richard Fussenegger",
"email": "richard@fussenegger.info",
"homepage": "http://richard.fussenegger.info",
"role": "Lead-Developer"
},
{
"name": "Markus Deutschl",
"email": "mdeutschl.mmt-m2012@fh-salzburg.ac.at",
"role": "Developer"
},
{
"name": "Franz Torghele",
"email": "ftorghele.mmt-m2012@fh-salzburg.ac.at",
"role": "Developer"
}
],
"autoload": {
"psr-0": { "MovLib\\": [ "src/", "test/" ] }
},
"require": {
"php": ">=5.5.0",
"cogpowered/finediff": "~0",
"elasticsearch/elasticsearch": "~1",
"monolog/monolog": "~1",
"symfony/console": "~2"
},
"require-dev": {
"firephp/firephp-core": "~0",
"jan-swiecki/simple-annotations": "~0",
"oodle/krumo": "~0",
"phpunit/phpunit": "~4"
},
"scripts": {
"post-install-cmd": "MovLib\\Console\\Composer::postInstall",
"post-update-cmd": "MovLib\\Console\\Composer::postUpdate",
"post-package-install": "MovLib\\Console\\Composer::postPackageInstall",
"post-package-update": "MovLib\\Console\\Composer::postPackageUpdate"
},
"support": {
"email": "webmaster@movlib.org",
"issues": "https://github.com/MovLib/www/issues",
"source": "https://github.com/MovLib/www"
}
}