forked from cordoval/Core-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.15 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
{
"description": "A Tribal Wars Core Module",
"keywords": [
"Tribal Wars",
"Open Source",
"Browsergame"
],
"homepage": "http://ot.blackscorp.de",
"license": "MIT",
"authors": [
{
"name": "Vitalij Mik",
"email": "vitalij@blackscorp.de"
}
],
"name": "opentribes/core",
"support": {
"issues": "https://github.com/Opentribes/Core/issues",
"forum": "http://webgamers.de",
"wiki": "https://github.com/Opentribes/Core/wiki",
"source": "https://github.com/Opentribes/Core"
},
"require": {
"php": ">=5.5",
"silex/silex": "~1",
"igorw/config-service-provider": "~1",
"doctrine/migrations": "~1@dev",
"mustache/silex-provider": "~1",
"swiftmailer/swiftmailer": "~5",
"symfony/validator": "~2",
"symfony/console": "~2",
"monolog/monolog": "~1",
"symfony/yaml": "~2"
},
"autoload": {
"psr-4": {
"OpenTribes\\Core\\": "src/",
"OpenTribes\\Core\\Migrations\\": "migrations/",
"OpenTribes\\Core\\Silex\\": "silex/"
}
},
"autoload-dev": {
"psr-4": {
"OpenTribes\\Core\\Mock\\": "mock/",
"OpenTribes\\Core\\Test\\": "tests/"
}
}
}