summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..da5bce0
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,30 @@
+{
+ "name": "phpmyadmin/motranslator",
+ "description": "Translation API for PHP using Gettext MO files",
+ "license": "GPL-2.0+",
+ "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"
+ },
+ "require": {
+ "php": ">=5.3.0",
+ "symfony/expression-language": "^3.1 || ^2.8"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.8 || ~5.1"
+ },
+ "autoload": {
+ "psr-4": {
+ "MoTranslator\\": "src"
+ }
+ }
+}