-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
29 lines (29 loc) · 919 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
{
"name": "jaimeperez/twig-configurable-i18n",
"description": "This is an extension on top of Twig's i18n extension, allowing you to customize which functions to use for translations.",
"type": "project",
"keywords": [ "twig", "extension", "i18n", "internationalization", "translation", "gettext" ],
"license": "LGPL-2.1",
"authors": [
{
"name": "Jaime Perez",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"JaimePerez\\TwigConfigurableI18n\\": "src/"
}
},
"require": {
"twig/extensions": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "~4.8.36",
"twig/twig": "^1.37 || ^2.7"
},
"support": {
"issues": "https://github.com/jaimeperez/twig-configurable-i18n/issues",
"source": "https://github.com/jaimeperez/twig-configurable-i18n"
}
}