From 45b1172ac143d5d20002de8bad329a152f42b37f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 16 Jan 2018 14:40:16 +0100 Subject: ass backport stuff --- composer.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3d5911d --- /dev/null +++ b/composer.json @@ -0,0 +1,46 @@ +{ + "name" : "gettext/languages", + "description" : "gettext languages with plural rules", + "keywords" : [ + "localization", + "l10n", + "internationalization", + "i18n", + "translations", + "translate", + "php", + "unicode", + "cldr", + "language", + "languages", + "plural", + "plurals", + "plural rules" + ], + "homepage" : "https://github.com/mlocati/cldr-to-gettext-plural-rules", + "license" : "MIT", + "authors" : [{ + "name" : "Michele Locati", + "email" : "mlocati@gmail.com", + "role" : "Developer" + } + ], + "autoload" : { + "psr-4" : { + "Gettext\\Languages\\" : "src/" + } + }, + "require" : { + "php" : ">=5.3" + }, + "require-dev": { + "phpunit/phpunit": "^4" + }, + "scripts": { + "test": "phpunit" + }, + "bin" : [ + "bin/export-plural-rules", + "bin/export-plural-rules.php" + ] +} \ No newline at end of file -- cgit