-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
67 lines (67 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "vincentlanglet/twig-cs-fixer",
"description": "A tool to automatically fix Twig code style",
"license": "MIT",
"type": "coding-standard",
"authors": [
{
"name": "Vincent Langlet"
}
],
"homepage": "https://github.com/VincentLanglet/Twig-CS-Fixer",
"require": {
"php": ">=8.0",
"ext-ctype": "*",
"ext-json": "*",
"composer-runtime-api": "^2.0.0",
"symfony/console": "^5.4.9 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/finder": "^5.4 || ^6.4 || ^7.0",
"symfony/string": "^5.4.42 || ^6.4.10 || ~7.0.10 || ^7.1.3",
"twig/twig": "^3.4",
"webmozart/assert": "^1.10"
},
"require-dev": {
"composer/semver": "^3.2.0",
"dereuromark/composer-prefer-lowest": "^0.1.10",
"ergebnis/composer-normalize": "^2.29",
"friendsofphp/php-cs-fixer": "^3.13.0",
"infection/infection": "^0.26.16 || ^0.27.0",
"phpstan/phpstan": "^1.9.1",
"phpstan/phpstan-phpunit": "^1.2.2",
"phpstan/phpstan-strict-rules": "^1.4.4",
"phpstan/phpstan-symfony": "^1.2.16",
"phpstan/phpstan-webmozart-assert": "^1.2.2",
"phpunit/phpunit": "^9.5.26 || ^10.0.9",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^5.0.0",
"rector/rector": "^1.0.0",
"shipmonk/composer-dependency-analyser": "^1.6",
"symfony/process": "^5.4 || ^6.4 || ^7.0",
"symfony/twig-bridge": "^5.4 || ^6.4 || ^7.0",
"symfony/ux-twig-component": "^2.2.0",
"twig/cache-extra": "^3.2",
"vimeo/psalm": "^5.2.0"
},
"autoload": {
"psr-4": {
"TwigCsFixer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TwigCsFixer\\PHPStan\\": ".phpstan/",
"TwigCsFixer\\Tests\\": "tests/"
}
},
"bin": [
"bin/twig-cs-fixer"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"sort-packages": true
}
}