Blame view

public/vendor/symfony/translation/composer.json 1.9 KB
86143e36f   Андрей Ларионов   Коммит вторник
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": "symfony/translation",
      "type": "library",
      "description": "Provides tools to internationalize your application",
      "keywords": [],
      "homepage": "https://symfony.com",
      "license": "MIT",
      "authors": [
          {
              "name": "Fabien Potencier",
              "email": "fabien@symfony.com"
          },
          {
              "name": "Symfony Community",
              "homepage": "https://symfony.com/contributors"
          }
      ],
      "require": {
          "php": ">=7.2.5",
          "symfony/deprecation-contracts": "^2.1|^3",
          "symfony/polyfill-mbstring": "~1.0",
          "symfony/polyfill-php80": "^1.16",
          "symfony/translation-contracts": "^2.3"
      },
      "require-dev": {
          "symfony/config": "^4.4|^5.0|^6.0",
          "symfony/console": "^5.4|^6.0",
          "symfony/dependency-injection": "^5.0|^6.0",
          "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
          "symfony/http-kernel": "^5.0|^6.0",
          "symfony/intl": "^4.4|^5.0|^6.0",
          "symfony/polyfill-intl-icu": "^1.21",
          "symfony/service-contracts": "^1.1.2|^2|^3",
          "symfony/yaml": "^4.4|^5.0|^6.0",
          "symfony/finder": "^4.4|^5.0|^6.0",
          "psr/log": "^1|^2|^3"
      },
      "conflict": {
          "symfony/config": "<4.4",
          "symfony/dependency-injection": "<5.0",
          "symfony/http-kernel": "<5.0",
          "symfony/twig-bundle": "<5.0",
          "symfony/yaml": "<4.4",
          "symfony/console": "<5.3"
      },
      "provide": {
          "symfony/translation-implementation": "2.3"
      },
      "suggest": {
          "symfony/config": "",
          "symfony/yaml": "",
          "psr/log-implementation": "To use logging capability in translator"
      },
      "autoload": {
          "files": [ "Resources/functions.php" ],
          "psr-4": { "Symfony\\Component\\Translation\\": "" },
          "exclude-from-classmap": [
              "/Tests/"
          ]
      },
      "minimum-stability": "dev"
  }