forked from h4kuna/gettext-latte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.29 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
{
"name": "futurerockstars/gettext-latte",
"type": "library",
"description": "Gettext translator for Latte template",
"homepage": "https://github.com/h4kuna/gettext-latte",
"license": "MIT",
"authors": [
{
"name": "Milan Matějček",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.4.0 <8.0.0",
"h4kuna/latte-php-tokenizer": "^1.0.0",
"latte/latte": "^2.7.4",
"nette/application": "^3.1.11",
"nette/caching": "^3.1.4",
"nette/http": "^3.2.2",
"nette/utils": "^3.2.9|^4.0.0",
"nette/finder": "^2.6.0|^3.0.0",
"nette/di": "^3.0.16"
},
"require-dev": {
"nette/bootstrap": "^3.1.4",
"nette/tester": "^2.4.3",
"orisai/coding-standard": "^3.7.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1.0",
"phpstan/phpstan-nette": "^1.2.0",
"phpstan/phpstan-strict-rules": "^1.5.0",
"staabm/annotate-pull-request-from-checkstyle": "^1.8.0",
"tracy/tracy": "^2.6.8"
},
"bin": ["compiler/latte-compiler"],
"autoload": {
"psr-4": {
"h4kuna\\Gettext\\": "src\\"
},
"files": ["src/exceptions.php"]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}