diff options
Diffstat (limited to 'vendor/ipl/i18n/composer.json')
-rw-r--r-- | vendor/ipl/i18n/composer.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/ipl/i18n/composer.json b/vendor/ipl/i18n/composer.json new file mode 100644 index 0000000..d79aba2 --- /dev/null +++ b/vendor/ipl/i18n/composer.json @@ -0,0 +1,28 @@ +{ + "name": "ipl/i18n", + "type": "library", + "description": "Icinga PHP Library - Internationalization", + "keywords": ["gettext", "i18n", "internationalization", "localization", "translation"], + "homepage": "https://github.com/Icinga/ipl-i18n", + "license": "MIT", + "require": { + "php": ">=7.2", + "ext-intl": "*", + "ext-gettext": "*", + "ipl/stdlib": ">=0.12.0" + }, + "autoload": { + "files": ["src/functions_include.php"], + "psr-4": { + "ipl\\I18n\\": "src" + } + }, + "require-dev": { + "ipl/stdlib": "dev-main" + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\I18n\\": "tests" + } + } +} |