summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: b7f75a70c2413d59021c2eae0c2fbe4bb13fda52 (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
45
46
47
{
    "name": "phpmyadmin/motranslator",
    "description": "Translation API for PHP using Gettext MO files",
    "license": "GPL-2.0-or-later",
    "keywords": ["gettext", "mo", "translator", "i18n"],
    "homepage": "https://github.com/phpmyadmin/motranslator",
    "authors": [
        {
            "name": "The phpMyAdmin Team",
            "email": "developers@phpmyadmin.net",
            "homepage": "https://www.phpmyadmin.net/team/"
        }
    ],
    "support": {
        "issues": "https://github.com/phpmyadmin/motranslator/issues",
        "source": "https://github.com/phpmyadmin/motranslator"
    },
    "scripts": {
        "phpcbf": "phpcbf",
        "phpcs": "phpcs",
        "phpunit": "phpunit --color=always",
        "test": [
            "@phpcs",
            "@phpunit"
        ]
    },
    "require": {
        "php": "^7.1",
        "symfony/expression-language": "^4.0 || ^5.0"
    },
    "require-dev": {
        "sami/sami": "^4.0",
        "phpunit/php-code-coverage": "*",
        "phpunit/phpunit": "^7.4 || ^8",
        "phpmyadmin/coding-standard": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "PhpMyAdmin\\MoTranslator\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "PhpMyAdmin\\MoTranslator\\Tests\\": "tests"
        }
    }
}