-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
47 lines (47 loc) · 1021 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
47
{
"name": "phpbb/translation-validator",
"description": "A language package validator for phpBB language packs. Language packs are required to pass the validator when submitted to the language pack database.",
"homepage": "https://github.com/phpbb/phpbb-translation-validator",
"version": "1.6.0",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Joas Schilling",
"email": "[email protected]",
"homepage": "http://www.phpbb.com/",
"role": "Developer"
},
{
"name": "Battye",
"email": "[email protected]",
"homepage": "https://www.phpbb.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": "~7.4",
"symfony/yaml": "~3.4",
"symfony/console": "~3.4",
"symfony/finder": "~3.4",
"battye/php-array-parser": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0"
},
"bin": [
"translation.php"
],
"config": {
"platform": {
"php": "7.4.33"
},
"bin-dir": "bin"
},
"autoload": {
"classmap": [
"src/",
"tests/"
]
}
}