-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.21 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": "tvogt/translator-bundle",
"type": "symfony-bundle",
"description": "Provides a web-based interface for translating i18n strings.",
"keywords": ["symfony", "translation", "i18n"],
"homepage": "https://github.com/tvogt/translator-bundle",
"license": "GPL3",
"authors": [
{
"name": "Tom Vogt",
"email": "[email protected]",
"homepage": "http://lemuria.org"
},
{
"name": "Calitarus GmbH",
"homepage": "http://calitarus.de"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "2.1.*",
"symfony/twig-bundle": "2.1.*",
"symfony/security-bundle": "*",
"symfony/finder": "2.1.*",
"symfony/form": "2.1.*",
"symfony/validator": "2.1.*",
"symfony/yaml": "2.1.*",
"symfony/console": "2.1.*",
"symfony/browser-kit": "2.1.*",
"symfony/class-loader": "2.1.*"
},
"suggest": {
"doctrine/doctrine-bundle": "dev-master",
"doctrine/mongodb-odm-bundle": "dev-master"
},
"autoload": {
"psr-0": { "Calitarus\\TranslatorBundle": "" }
},
"target-dir": "Calitarus/TranslatorBundle"
}