forked from Kdyby/Translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.98 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "kdyby/translation",
"type": "library",
"description": "Integration of Symfony/Translation into Nette Framework",
"keywords": ["nette", "kdyby", "translation"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "filip@prochazka.su"
}
],
"support": {
"email": "filip@prochazka.su",
"issues": "https://github.com/kdyby/translation/issues"
},
"require": {
"php": ">=7.1",
"kdyby/strict-objects": "^2.0",
"latte/latte": "^2.5.2 || ^3.0",
"nette/caching": "^3.0",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/http": "^3.0",
"nette/neon": "^3.0",
"nette/php-generator": "^3.0.1@dev",
"nette/reflection": "^2.4.2@dev",
"nette/utils": "^3.0",
"psr/log": "^1.0",
"symfony/translation": "^3.4 || ^4.0",
"symfony/config": "^3.4 || ^4.0"
},
"suggest": {
"kdyby/console": "If you wanna use extract command and much others, install also console.",
"kdyby/monolog": "Integration of Monolog into Nette Framework.",
"tracy/tracy": "Diagnostics tool from Nette",
"symfony/locale": "Locale component provides fallback code to handle cases when the intl extension is missing.",
"symfony/yaml": "If you wanna store translations in YAML format - supports multiline strings."
},
"require-dev": {
"nette/application": "^3.0",
"nette/bootstrap": "^3.0",
"nette/forms": "^3.0",
"tracy/tracy": "^2.7 || ^3.0",
"kdyby/console": "^2.7.1@dev",
"kdyby/monolog": "^2.0",
"symfony/yaml": "^3.4 || ^4.0",
"symfony/console": "^3.4 || ^4.0",
"nette/tester": "^2.2",
"mockery/mockery": "^1.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Kdyby\\Translation\\": "src/"
},
"classmap": [
"src/exceptions.php"
]
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\": "tests/KdybyTests"
},
"classmap": [
"tests/KdybyTests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}