-
Notifications
You must be signed in to change notification settings - Fork 292
/
composer.json
81 lines (81 loc) · 2.58 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
{
"name": "jms/translation-bundle",
"type": "symfony-bundle",
"description": "Puts the Symfony Translation Component on steroids",
"keywords": [
"translation",
"multilanguage",
"extract",
"webinterface",
"ui",
"i18n",
"extraction",
"interface"
],
"homepage": "http://jmsyst.com/bundles/JMSTranslationBundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"nikic/php-parser": "^4.9 || ^5",
"symfony/console": "^4.3 || ^5.4 || ^6.0",
"symfony/expression-language": "^4.3 || ^5.4 || ^6.0",
"symfony/framework-bundle": "^4.3 || ^5.4 || ^6.0",
"symfony/config": "^4.3 || ^5.4 || ^6.2",
"symfony/translation": "^4.3 || ^5.4 || ^6.0",
"symfony/translation-contracts": "^1.1 || ^2.0 || ^3.0",
"symfony/validator": "^4.3 || ^5.4 || ^6.0",
"twig/twig": "^2.13.1 || ^3.0",
"psr/log": "^1.0 || ^2.0"
},
"require-dev": {
"doctrine/annotations": "^1.11",
"doctrine/coding-standard": "^8.2.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"nyholm/nsa": "^1.0.1",
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.4",
"sensio/framework-extra-bundle": "^6.2.4",
"symfony/asset": "^4.4 || ^5.4 || ^6.4",
"symfony/browser-kit": "^4.4 || ^5.4 || ^6.4",
"symfony/css-selector": "^4.4 || ^5.4 || ^6.4",
"symfony/filesystem": "^4.4 || ^5.4 || ^6.4",
"symfony/form": "^4.4 || ^5.4 || ^6.4",
"symfony/security-csrf": "^4.4 || ^5.4 || ^6.4",
"symfony/templating": "^4.4 || ^5.4 || ^6.4",
"symfony/property-access": "^4.4 || ^5.4 || ^6.4",
"symfony/routing": "^4.4.15 || ^5.4 || ^6.4",
"symfony/twig-bundle": "^4.4 || ^5.4 || ^6.4",
"symfony/flex": "^1.19 || ^2.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"symfony": {
"allow-contrib": true
}
},
"autoload": {
"psr-4": {
"JMS\\TranslationBundle\\": ""
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}