-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
37 lines (37 loc) · 877 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
{
"name": "voda/gettext-extractor",
"description": "tool for extracting gettext messages",
"authors": [
{"name": "Ondřej Vodáček", "email": "[email protected]"},
{"name": "Karel Klima"}
],
"keywords":["gettext", "l10n"],
"license": "BSD-3-Clause",
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.2.0",
"latte/latte": "^2.5",
"nette/utils": "^3.0",
"nikic/php-parser": "^4.2"
},
"autoload": {
"psr-4": {"Vodacek\\GettextExtractor\\" : "src"}
},
"autoload-dev": {
"psr-4": {
"Vodacek\\GettextExtractor\\Tests\\Unit\\": "tests/unit",
"Vodacek\\GettextExtractor\\Tests\\Integration\\": "tests/integration"
}
},
"bin": [
"gettext-extractor.php"
],
"require-dev": {
"phpstan/phpstan": "^0.11.5",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0",
"phpunit/phpunit": "^8"
}
}