summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 0aa7e0cc7cb311f36b34af328f5b44d9eae1fe75 (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
37
38
39
40
41
42
43
44
{
    "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/"
        }
    ],
    "support": {
        "issues": "https://github.com/phpmyadmin/twig-i18n-extension/issues",
        "source": "https://github.com/phpmyadmin/twig-i18n-extension"
    },
    "require": {
        "php": ">=7.1",
        "twig/twig": "^1.42.3|^2.0|^3.0"
    },
    "require-dev": {
        "phpmyadmin/coding-standard": "^2.0",
        "phpunit/phpunit": "^7 || ^8 || ^9"
    },
    "scripts": {
        "phpunit": "phpunit",
        "phpcs": "phpcs",
        "phpcbf": "phpcbf"
    },
    "autoload": {
        "psr-4": { "PhpMyAdmin\\Twig\\Extensions\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "PhpMyAdmin\\Tests\\Twig\\Extensions\\": "test/" }
    },
    "config":{
        "sort-packages": true
    }
}