-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 917 Bytes
/
composer.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "koded/i18n",
"type": "library",
"license": "BSD-3-Clause",
"description": "Simple internationalization library with support for .po and .php translation files",
"homepage": "https://github.com/kodedphp/i18n/",
"support": {
"issues": "https://github.com/kodedphp/i18n/issues",
"source": "https://github.com/kodedphp/i18n"
},
"keywords": [
"translation",
"multilanguage",
"i18n",
".po"
],
"require": {
"php": "^8.1",
"koded/stdlib": "^6.3",
"ext-intl": "*",
"ext-gettext": "*"
},
"autoload": {
"classmap": [
""
],
"files": [
"functions.php"
],
"exclude-from-classmap": [
"tests/"
]
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload-dev": {
"psr-4": {
"Tests\\Koded\\I18n\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}