forked from vojtasvoboda/oc-twigextensions-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.11 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
{
"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.0",
"twig/extensions": "~1.5.1",
"symfony/translation": "~3.3.9",
"composer/installers": "~1.4",
"snilius/twig-sort-by-field": "dev-master"
},
"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": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"squizlabs/php_codesniffer": "3.*"
}
}