-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "vojtasvoboda/twigextensions-plugin",
"type": "october-plugin",
"keywords": ["twig", "extensions"],
"description": "Register more Twig filters for your OctoberCMS templates",
"license": "MIT",
"authors": [
{
"name": "Vojta Svoboda",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"october/rain": "^3.0",
"composer/installers": "~1.0",
"twig/intl-extra": "^3.4"
},
"minimum-stability": "stable",
"scripts": {
"build": [
"@composer install --no-progress --no-interaction --no-suggest",
"@test"
],
"test": [
"composer dumpautoload",
"../../../vendor/bin/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.*",
"phpunit/phpunit": "^9.6"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}