-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·69 lines (69 loc) · 2.4 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
{
"name" : "src-run/serferals",
"license" : "MIT",
"type" : "project",
"homepage" : "https://src.run/serferals",
"description" : "A CLI application for resolving and organizing movie and episode files.",
"support" : {
"email" : "rmf@src.run",
"issues" : "https://src.run/serferals/issues",
"source" : "https://src.run/serferals/git",
"irc" : "irc://irc.efnet.org/src-run"
},
"authors" : [
{
"name" : "Rob Frawley 2nd",
"email" : "rmf@src.run",
"homepage" : "https://src.run/rmf",
"role" : "Project Lead"
}
],
"keywords" : [
"serferals-media-organizer", "serferals", "media-organizer", "console", "application", "rmf", "src-run"
],
"require" : {
"symfony/console" : "~3.2",
"symfony/finder" : "~3.2",
"symfony/yaml" : "~3.2",
"symfony/serializer" : "~3.2",
"symfony/dependency-injection" : "~3.2",
"symfony/config" : "~3.2",
"mhor/php-mediainfo" : "~1.6",
"twig/twig" : "~2.0",
"php-tmdb/api" : "~2.0",
"monolog/monolog" : "~1.18",
"src-run/augustus-exception-library" : "~0.7",
"src-run/augustus-file-library" : "~0.7",
"src-run/augustus-primitive-library" : "~0.6",
"src-run/augustus-reflection-library" : "~0.7",
"src-run/augustus-serializer-library" : "~0.7",
"src-run/augustus-utility-library" : "~0.7",
"src-run/vermicious-console-io-library" : "~0.1",
"src-run/wonka-library" : "~0.7"
},
"require-dev" : {
"symfony/var-dumper" : "~3.2",
"phpunit/phpunit" : "~5.6",
"satooshi/php-coveralls" : "~1.0"
},
"autoload" : {
"psr-4" : {
"SR\\Serferals\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"SR\\Serferals\\Tests\\" : "tests/"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"config" : {
"bin-dir" : "bin"
},
"extra" : {
"branch-alias" : {
"dev-master" : "2.1-dev"
}
}
}