This repository has been archived by the owner on Apr 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.47 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
68
69
70
71
72
73
74
{
"name": "symplify/phpstan-latte-rules",
"type": "phpstan-extension",
"description": "Rules for static analysis of Latte templates and Latte render() methods",
"license": "MIT",
"require": {
"php": ">=8.0",
"phpstan/phpstan": "^1.5.6",
"latte/latte": "^2.11",
"symplify/astral": "^10.3",
"symplify/rule-doc-generator-contracts": "^10.3",
"symplify/package-builder": "^10.3",
"symplify/smart-file-system": "^10.3",
"symplify/latte-phpstan-compiler": "^10.3"
},
"require-dev": {
"nette/application": "^3.1",
"nette/forms": "^3.1",
"nette/security": "^3.1",
"phpunit/phpunit": "^9.5",
"symplify/phpstan-rules": "^10.3",
"symplify/phpstan-extensions": "^10.3",
"symplify/easy-ci": "^10.3"
},
"autoload": {
"psr-4": {
"Symplify\\PHPStanLatteRules\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\PHPStanLatteRules\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "10.3-dev"
},
"phpstan": {
"includes": [
"config/config.neon",
"config/rules.neon",
"config/services.neon"
]
}
},
"conflict": {
"symplify/astral": "<9.4.70",
"symplify/composer-json-manipulator": "<10.2.2",
"symplify/easy-coding-standard": "<10.2.2",
"symplify/phpstan-rules": "<10.2.2",
"symplify/easy-testing": "<10.2.2",
"symplify/autowire-array-parameter": "<10.2.2",
"symplify/amnesia": "<10.2.2",
"symplify/phpstan-extensions": "<10.2.2",
"symplify/vendor-patches": "<10.2.2",
"symplify/skipper": "<10.2.2",
"symplify/symfony-static-dumper": "<10.2.2",
"symplify/git-wrapper": "<10.2.2",
"symplify/monorepo-builder": "<10.2.2",
"symplify/config-transformer": "<10.2.2",
"symplify/easy-ci": "<10.2.2",
"symplify/coding-standard": "<10.2.2",
"symplify/latte-phpstan-compiler": "<9.4.70",
"symplify/template-phpstan-compiler": "<10.2.2",
"symplify/rule-doc-generator": "<10.2.2",
"symplify/php-config-printer": "<10.2.2",
"symplify/symplify-kernel": "<10.2.2",
"symplify/easy-parallel": "<10.2.2",
"symplify/neon-config-dumper": "<10.2.2"
},
"minimum-stability": "dev",
"prefer-stable": true
}