-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
53 lines (53 loc) · 1.49 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
49
50
51
52
53
{
"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": "[email protected]",
"homepage": "http://www.jasny.net"
}
],
"support": {
"issues": "https://github.com/jasny/twig-extensions/issues",
"source": "https://github.com/jasny/twig-extensions"
},
"require": {
"php": ">=7.4.0",
"twig/twig": "^2.7 | ^3.0"
},
"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": "*",
"ext-json": "*",
"phpstan/phpstan": "^1.12.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload-dev": {
"psr-4": {
"Jasny\\Twig\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"phpstan analyse",
"XDEBUG_MODE=coverage phpunit --testdox --colors=always --coverage-text",
"phpcs -p src"
]
}
}