-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
42 lines (42 loc) · 1.03 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": "friendsoftwig/twigcs",
"description": "Checkstyle automation for Twig",
"license": "MIT",
"authors": [
{
"name": "Tristan Maindron",
"email": "[email protected]"
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-ctype": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"symfony/console": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/filesystem": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/finder": "^4.4 || ^5.3 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.19",
"symfony/phpunit-bridge": "^7.2.0"
},
"autoload": {
"psr-4": {
"FriendsOfTwig\\Twigcs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FriendsOfTwig\\Twigcs\\Tests\\": "tests/"
}
},
"bin": [
"bin/twigcs"
],
"config": {
"sort-packages": true
}
}