-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
35 lines (35 loc) · 992 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
{
"name": "leaseweb/gettext-translation-bundle",
"type": "symfony-bundle",
"description": "Easy to use and native (faster) gettext translation support",
"keywords": ["gettext","I18n","Translation"],
"homepage": "http://www.leaseweblabs.com",
"license": "MIT",
"authors": [
{
"name": "Maurits van der Schee",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=4.0 <5",
"symfony/console": ">=4.0 <5",
"twig/twig": "^2.10|^3.0",
"symfony/process": ">=4.0 <5",
"symfony/routing": ">=4.0 <5",
"ext-gettext": "*"
},
"require-dev": {
},
"autoload": {
"psr-0": { "Lsw\\GettextTranslationBundle": "" }
},
"target-dir": "Lsw/GettextTranslationBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}