123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "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": "./vendor/bin/phpcbf",
- "phpcs": "./vendor/bin/phpcs",
- "phpstan": "./vendor/bin/phpstan analyse",
- "phpunit": "./vendor/bin/phpunit --color=always",
- "test": [
- "@phpcs",
- "@phpstan",
- "@phpunit"
- ]
- },
- "require": {
- "php": "^7.1 || ^8.0",
- "symfony/expression-language": "^4.0 || ^5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.4 || ^8 || ^9",
- "phpmyadmin/coding-standard": "^2.1.1",
- "phpstan/phpstan": "^0.12.56"
- },
- "autoload": {
- "psr-4": {
- "PhpMyAdmin\\MoTranslator\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "PhpMyAdmin\\MoTranslator\\Tests\\": "tests"
- }
- }
- }
|