forked from vojtasvoboda/oc-twigextensions-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.21 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
{
"name": "vojtasvoboda/oc-twigextensions-plugin",
"type": "october-plugin",
"extra": {
"installer-name": "twigextensions"
},
"keywords": ["twig", "extensions", "truncate", "wordwrap", "uppercase", "lowercase", "time_diff", "leftpad", "strftime"],
"description": "Register more Twig filters for your OctoberCMS templates",
"license": "MIT",
"authors": [
{
"name": "Vojta Svoboda",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"composer/installers": "~1.0",
"twig/intl-extra": "^2.12|^3.0",
"twig/string-extra": "^2.12|^3.0"
},
"suggest": {
"symfony/translation": "Allow the time_diff output to be translated"
},
"minimum-stability": "stable",
"scripts": {
"build": [
"@composer install --no-progress --no-interaction --no-suggest",
"@test"
],
"test": [
"composer dumpautoload",
"phpunit",
"vendor/bin/parallel-lint . --exclude vendor",
"vendor/bin/phpcs --standard=PSR2 --ignore=vendor --warning-severity=6 --colors ."
]
},
"require-dev": {
"symfony/translation": "^3.4|^4.2",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"squizlabs/php_codesniffer": "3.*"
}
}