-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.14 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
{
"name": "setono/tag-bag-twig",
"type": "library",
"description": "Twig extension for the tag bag library including a tag and a renderer",
"license": "MIT",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"setono/tag-bag": "^1.3",
"twig/twig": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.4",
"setono/code-quality-pack": "^1.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Setono\\TagBag\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\TagBag\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon -l max src",
"check-style": "vendor/bin/ecs check --ansi src/ tests/",
"fix-style": "vendor/bin/ecs check --fix --ansi src/ tests/",
"phpunit": "vendor/bin/phpunit"
}
}