summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 7ed3e936e445f7370c2ca2080fa4b31711b71aa0 (plain)
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
{
    "name": "phpmyadmin/twig-i18n-extension",
    "description": "Internationalization support for Twig via the gettext library",
    "keywords": ["i18n","gettext"],
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "The phpMyAdmin Team",
            "email": "developers@phpmyadmin.net",
            "homepage": "https://www.phpmyadmin.net/team/"
        }
    ],
    "require": {
        "php": ">=5.5.0",
        "twig/twig": "^1.42.3|^2.0"
    },
    "require-dev": {
        "symfony/phpunit-bridge": "^4.2|^5.0"
    },
    "autoload": {
        "psr-4": { "PhpMyAdmin\\Twig\\Extensions\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "PhpMyAdmin\\Tests\\Twig\\Extensions\\": "test/" }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.0-dev"
        }
    }
}