forked from twigphp/Twig-extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 952 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
36
{
"name": "twig/extensions",
"description": "Common additional features for Twig that do not directly belong in core",
"keywords": ["i18n","text"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0 || ^8.0 || ^8.2",
"twig/twig": "4.x-dev",
"symfony/polyfill-mbstring": "^1.10"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.2|^5.0",
"symfony/translation": "^3.4|^4.2|^5.0"
},
"suggest": {
"symfony/translation": "Allow the time_diff output to be translated"
},
"autoload": {
"psr-4": { "Twig\\Extensions\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Twig\\Tests\\Extensions\\": "test/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}