-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.47 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.47 KB
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
47
48
49
50
51
52
53
54
{
"name": "phildaiguille/twig-a11y-rules",
"description": "Accessibility linting rules for Twig templates",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Phildaiguille"
}
],
"require": {
"php": ">=8.2",
"composer-runtime-api": "^2.0",
"vincentlanglet/twig-cs-fixer": "^3.14.0"
},
"require-dev": {
"brianium/paratest": "^7.8",
"friendsofphp/php-cs-fixer": "^3.95",
"infection/infection": "^0.32.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5.55",
"rector/rector": "^2.4"
},
"autoload": {
"psr-4": {
"TwigA11y\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TwigA11y\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit tests --testdox",
"cs-lint": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse",
"rector": "rector --dry-run",
"rector:apply": "rector",
"infection": "infection",
"lint": "composer cs-lint && vendor/bin/phpstan --memory-limit=2g && composer test && composer rector",
"lint:fix": "composer rector:apply && composer cs-fix"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"audit": {
"block-insecure": false
},
"sort-packages": true
}
}