This repository has been archived by the owner on Dec 21, 2017. It is now read-only.
forked from sonata-project/SonataTranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.94 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
{
"name": "sonata-project/translation-bundle",
"type": "symfony-bundle",
"description": "SonataTranslationBundle",
"keywords": ["translation", "i18n"],
"homepage": "http://sonata-project.org/bundles/translation",
"license": "MIT",
"authors": [
{
"name": "Nicolas Bastien",
"email": "nbastien.pro@gmail.com",
"homepage": "https://github.com/nicolas-bastien"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataTranslationBundle/contributors"
}
],
"require": {
"php": "^5.4 || ^7.0",
"sonata-project/admin-bundle": "^3.1",
"sonata-project/core-bundle": "^3.0",
"symfony/framework-bundle": "^2.3 || ^3.0",
"symfony/options-resolver": "^2.3 || ^3.0",
"twig/twig": "^1.23"
},
"require-dev": {
"knplabs/doctrine-behaviors": "^1.0",
"sllh/php-cs-fixer-styleci-bridge": "^2.0",
"stof/doctrine-extensions-bundle": "^1.1",
"symfony/phpunit-bridge": "^2.7 || ^3.0"
},
"suggest": {
"stof/doctrine-extensions-bundle": "1.1.*",
"sonata-project/doctrine-orm-admin-bundle":"2.2.*",
"sonata-project/doctrine-phpcr-admin-bundle": "1.*",
"knplabs/doctrine-behaviors": "1.0.*",
"doctrine/phpcr-odm": "if you translate odm documents"
},
"conflict": {
"doctrine/phpcr-odm": ">=3.0",
"knplabs/doctrine-behaviors": "<1.0 || >=2.0",
"stof/doctrine-extensions-bundle": "<1.1 || >=2.0"
},
"autoload": {
"psr-4": { "Sonata\\TranslationBundle\\": "" },
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": { "Sonata\\TranslationBundle\\Tests\\": "Tests/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}