forked from twigphp/intl-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.28 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
{
"name": "alisqi/twig-ext-intl",
"type": "library",
"description": "A Twig extension for Intl -- Fork from twig/intl-extra",
"keywords": ["twig", "intl"],
"homepage": "https://twig.symfony.com",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com",
"homepage": "http://fabien.potencier.org",
"role": "Lead Developer"
},
{
"name": "Jeroen Versteeg",
"email": "jeroen@alisqi.com",
"homepage": "https://www.alisqi.com",
"role": "CTO"
},
{
"name": "Daniëlle Suurlant",
"email": "danielle@alisqi.com",
"homepage": "https://www.alisqi.com",
"role": "Backend Developer"
}
],
"require": {
"php": ">=7.1.3",
"twig/twig": "^2.7|^3.0",
"symfony/intl": "^4.4|^5.0|^6.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
},
"autoload": {
"psr-4" : { "Twig\\Extra\\Intl\\" : "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.14-dev"
}
}
}