-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 940 Bytes
/
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
{
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"symplify/easy-coding-standard": "^10.2",
"symplify/coding-standard": "^10.2",
"rector/rector": "^0.14.2",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/extension-installer": "^1.1",
"nikic/php-parser": "^4.13.2",
"symfony/framework-bundle": "^6.0",
"symfony/twig-bundle": "^6.0",
"symfony/yaml": "^6.0",
"symfony/filesystem": "^6.0"
},
"require": {
"twig/twig": "^3.3",
"php": "^8.1",
"symfony/finder": "^6.1"
},
"autoload": {
"psr-4": {
"PhpStanTwigAnalysis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpStanTwigAnalysis\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}