-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
57 lines (57 loc) · 1.59 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
{
"name": "webfactory/icu-translation-bundle",
"description": "Enables ICU message formatting for translations in Symfony applications.",
"keywords": [
"symfony",
"translator",
"translation",
"pluralization",
"icu",
"formatting",
"message"
],
"license": "MIT",
"authors": [
{
"name": "webfactory GmbH",
"email": "[email protected]",
"homepage": "http://www.webfactory.de",
"role": "Developer"
}
],
"require": {
"php": "^7.4 | 8.0.* | 8.1.*",
"ext-intl": "*",
"lib-icu": ">=4.8",
"jms/parser-lib": "^1.0.0",
"psr/log": "^1.0",
"symfony/config": "^4.3|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/finder": "^3.4.31|^4.0|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/translation": "^4.2|^5.0",
"symfony/translation-contracts": "^2.0|^3.0",
"twig/twig": "^1.42|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 | ^9.0",
"symfony/monolog-bundle": "^3.4.31",
"symfony/phpunit-bridge": ">= 5.0",
"symfony/twig-bundle": "^3.4.31|^4.0|^5.0",
"symfony/yaml": "^4.4|^5.0"
},
"autoload": {
"psr-4": {
"Webfactory\\IcuTranslationBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Webfactory\\IcuTranslationBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}