-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 1.1 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
{
"name": "nielsdeblaauw/twigcs-a11y",
"description": "Accessibility rules for TwigCS",
"type": "library",
"require": {
"friendsoftwig/twigcs": "^5.1"
},
"license": "MIT",
"authors": [
{
"name": "Niels de Blaauw",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NdB\\TwigCSA11Y\\": "src/"
}
},
"scripts":{
"test": [
"composer validate --strict",
"twigcs tests/test.twig --ruleset \\\\NdB\\\\TwigCSA11Y\\\\Ruleset > tests/snapshot.compare.xml || true",
"diff tests/snapshot.xml tests/snapshot.compare.xml",
"psalm",
"phpcs"
],
"test:update-snapshot": [
"twigcs tests/test.twig --ruleset \\\\NdB\\\\TwigCSA11Y\\\\Ruleset > tests/snapshot.xml || true"
],
"test:ruleset": [
"twigcs tests/test.twig --ruleset \\\\NdB\\\\TwigCSA11Y\\\\Ruleset"
]
},
"require-dev": {
"vimeo/psalm": "^3.16",
"squizlabs/php_codesniffer": "^3.5"
}
}