forked from phpbb/phpbb-translation-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 852 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
{
"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.3.8",
"license": "GPL-2.0",
"authors": [
{
"name": "Joas Schilling",
"email": "[email protected]",
"homepage": "http://www.phpbb.com/",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.3",
"symfony/yaml": "2.6.*",
"symfony/console": "2.6.*",
"symfony/finder": "2.6.*"
},
"require-dev": {
"phpunit/phpunit": "4.4.*"
},
"bin": [
"src/Phpbb/TranslationValidator/PhpbbTranslationValidator.php"
],
"config": {
"bin-dir": "bin"
},
"autoload": {
"classmap": [
"src/"
]
}
}