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
|
{
"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"
}
}
}
|