forked from contributte/translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.43 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
{
"name": "contributte/translation",
"description": "Symfony/Translation integration for Nette Framework.",
"type": "library",
"keywords": [
"symfony",
"nette",
"translation"
],
"license": "MIT",
"homepage": "https://github.com/contributte/translation",
"authors": [
{
"name": "Ales Wita"
}
],
"require": {
"php": "^8.0.2",
"latte/latte": "^2.6",
"nette/di": "^3.0.6",
"nette/finder": "^2.5.2",
"nette/http": "^3.0",
"nette/neon": "^3.3.1",
"nette/schema": "^1.0",
"nette/routing": "^3.0",
"nette/utils": "^3.2.1",
"symfony/translation": "^6.0",
"symfony/config": "^6.0"
},
"require-dev": {
"doctrine/orm": "^2.8",
"mockery/mockery": "^1.4",
"nette/application": "^3.0",
"nette/bootstrap": "^3.0",
"nette/database": "^3.1.1",
"nette/robot-loader": " ^3.2",
"nette/tester": "^2.3.1",
"ninjify/nunjuck": "^0.3.0",
"ninjify/qa": "^0.13",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"psr/log": "^1.1",
"tracy/tracy": "^2.8"
},
"autoload": {
"psr-4": {
"Contributte\\Translation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/Tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}