-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
40 lines (40 loc) · 1.15 KB
/
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
{
"name": "whitecube/lingua",
"description": "A PHP language codes converter, from and to the most common formats (ISO, W3C, PHP and human-readable names).",
"keywords": ["localization", "locales", "language", "conversion", "ISO", "codes", "BCP-47", "translation", "translate"],
"license": "MIT",
"authors": [
{
"name": "WhiteCube",
"email": "[email protected]",
"homepage": "http://www.whitecube.be",
"role": "Maintainer"
},
{
"name": "Toon Van den Bos",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Adrien Leloup",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/whiteCube/lingua/issues",
"source": "https://github.com/whiteCube/lingua"
},
"require": {
"php": "^7.0|^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"WhiteCube\\Lingua\\": "src/Lingua/"
}
}
}