-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.33 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
{
"name": "argentum/translation-bundle",
"type": "symfony-bundle",
"description": "Provides a database storage for translations and GUI for editing them",
"keywords": ["translation", "i18n", "doctrine2", "translatable", "sonata"],
"homepage": "http://argentum.ua",
"license": "MIT",
"authors": [
{
"name": "Vadim Borodavko",
"email": "[email protected]",
"homepage": "https://github.com/javer"
}
],
"require": {
"php": ">=5.4.0",
"symfony/symfony": ">=2.3",
"symfony/monolog-bundle": ">=2.3",
"twig/twig": ">=1.10",
"doctrine/common": ">=2.2",
"doctrine/orm": ">=2.2",
"knplabs/doctrine-behaviors": ">=1.0",
"a2lix/translation-form-bundle": ">=2.0",
"sonata-project/admin-bundle": ">=2.0",
"sonata-project/doctrine-orm-admin-bundle": ">=2.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5.4.3",
"doctrine/doctrine-fixtures-bundle": ">=2.2",
"liip/functional-test-bundle": ">=1.1.0",
"satooshi/php-coveralls": "1.0.*"
},
"autoload": {
"psr-0": { "Argentum\\TranslationBundle": "" }
},
"target-dir": "Argentum/TranslationBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}