-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.25 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
{
"name": "reveal/reveal-twig",
"type": "phpstan-extension",
"description": "Rules for static analysis of TWIG templates and TWIG render() methods",
"license": "MIT",
"require": {
"php": ">=8.1",
"twig/twig": "^3.3",
"symplify/astral": "^10.0",
"symplify/rule-doc-generator-contracts": "^10.2",
"symplify/package-builder": "^10.2",
"symplify/smart-file-system": "^10.2",
"reveal/twig-phpstan-compiler": "^0.2",
"reveal/template-phpstan-compiler": "^0.2",
"phpstan/phpstan": "^1.5.6"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^9.5",
"symplify/phpstan-extensions": "^10.2",
"symplify/easy-ci": "^10.2",
"symfony/framework-bundle": "^6.0"
},
"autoload": {
"psr-4": {
"Reveal\\RevealTwig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Reveal\\RevealTwig\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2-dev"
},
"phpstan": {
"includes": [
"config/rules.neon",
"config/services.neon"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}