composer.json
1.18 KB
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
{
"name": "jasny/twig-extensions",
"description": "A set of useful Twig filters",
"keywords": ["templating", "PCRE", "preg", "regex", "date", "time", "datetime", "text", "array"],
"license": "MIT",
"homepage": "http://github.com/jasny/twig-extensions#README",
"authors": [
{
"name": "Arnold Daniels",
"email": "arnold@jasny.net",
"homepage": "http://www.jasny.net"
}
],
"support": {
"issues": "https://github.com/jasny/twig-extensions/issues",
"source": "https://github.com/jasny/twig-extensions"
},
"require": {
"php": ">=7.0.0 | >=5.6.0",
"twig/twig": "^2.0 | ^1.12"
},
"suggest": {
"ext-intl": "Required for the use of the LocalDate Twig extension",
"ext-pcre": "Required for the use of the PCRE Twig extension"
},
"autoload": {
"psr-4": {
"Jasny\\Twig\\": "src/"
}
},
"require-dev": {
"ext-intl": "*",
"ext-pcre": "*",
"jasny/php-code-quality": "^2.1",
"phpunit/phpunit": "^5.0"
},
"autoload-dev": {
"classmap": [
"tests/support/"
]
}
}