blob: de84e16575d8c3050d5363c17814cc0aeef46d91 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001{
2 "name": "symfony/translation",
3 "type": "library",
4 "description": "Provides tools to internationalize your application",
5 "keywords": [],
6 "homepage": "https://symfony.com",
7 "license": "MIT",
8 "authors": [
9 {
10 "name": "Fabien Potencier",
11 "email": "fabien@symfony.com"
12 },
13 {
14 "name": "Symfony Community",
15 "homepage": "https://symfony.com/contributors"
16 }
17 ],
18 "require": {
19 "php": ">=7.2.5",
20 "symfony/deprecation-contracts": "^2.1",
21 "symfony/polyfill-mbstring": "~1.0",
22 "symfony/polyfill-php80": "^1.16",
23 "symfony/translation-contracts": "^2.3"
24 },
25 "require-dev": {
26 "symfony/config": "^4.4|^5.0",
27 "symfony/console": "^4.4|^5.0",
28 "symfony/dependency-injection": "^5.0",
29 "symfony/http-kernel": "^5.0",
30 "symfony/intl": "^4.4|^5.0",
31 "symfony/polyfill-intl-icu": "^1.21",
32 "symfony/service-contracts": "^1.1.2|^2",
33 "symfony/yaml": "^4.4|^5.0",
34 "symfony/finder": "^4.4|^5.0",
35 "psr/log": "^1|^2|^3"
36 },
37 "conflict": {
38 "symfony/config": "<4.4",
39 "symfony/dependency-injection": "<5.0",
40 "symfony/http-kernel": "<5.0",
41 "symfony/twig-bundle": "<5.0",
42 "symfony/yaml": "<4.4"
43 },
44 "provide": {
45 "symfony/translation-implementation": "2.3"
46 },
47 "suggest": {
48 "symfony/config": "",
49 "symfony/yaml": "",
50 "psr/log-implementation": "To use logging capability in translator"
51 },
52 "autoload": {
53 "files": [ "Resources/functions.php" ],
54 "psr-4": { "Symfony\\Component\\Translation\\": "" },
55 "exclude-from-classmap": [
56 "/Tests/"
57 ]
58 },
59 "minimum-stability": "dev"
60}