forked from sonata-project/SonataTranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 3.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"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": "[email protected]",
"homepage": "https://github.com/nicolas-bastien"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataTranslationBundle/contributors"
}
],
"require": {
"php": "^7.3 || ^8.0",
"sonata-project/admin-bundle": "^3.85",
"sonata-project/block-bundle": "^3.17 || ^4.0",
"symfony/config": "^4.4",
"symfony/dependency-injection": "^4.4",
"symfony/form": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/http-kernel": "^4.4",
"symfony/intl": "^4.4",
"symfony/options-resolver": "^4.4",
"twig/twig": "^2.12 || ^3.0"
},
"conflict": {
"doctrine/annotations": "<1.8",
"doctrine/persistence": "<1.3.4",
"doctrine/phpcr-odm": ">=3.0",
"gedmo/doctrine-extensions": "<2.4.36",
"knplabs/doctrine-behaviors": "<1.0 || >=3.0"
},
"require-dev": {
"doctrine/orm": "^2.5",
"doctrine/phpcr-odm": "^1.5",
"gedmo/doctrine-extensions": "^2.3.36 || ^3.0",
"jackalope/jackalope-doctrine-dbal": "^1.5",
"knplabs/doctrine-behaviors": "^1.4 || ^2.0",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.48",
"phpstan/phpstan-doctrine": "^0.12.26",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-symfony": "^0.12.11",
"psalm/plugin-phpunit": "^0.15.0",
"psalm/plugin-symfony": "^2.0",
"sonata-project/doctrine-orm-admin-bundle": "^3.2",
"symfony/framework-bundle": "^4.4",
"symfony/phpunit-bridge": "^5.1.8",
"symfony/templating": "^4.4 || ^5.1",
"vimeo/psalm": "^4.3.2",
"weirdan/doctrine-psalm-plugin": "^1.0"
},
"suggest": {
"doctrine/phpcr-odm": "if you translate odm documents",
"gedmo/doctrine-extensions": "if you translate orm entities with the gedmo extensions",
"knplabs/doctrine-behaviors": "if you translate orm entities with the knplabs behaviours",
"sonata-project/doctrine-orm-admin-bundle": "if you translate orm entities and search on translated fields"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"Sonata\\TranslationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\TranslationBundle\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/simple-phpunit install"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/simple-phpunit install"
]
}
}