-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
81 lines (81 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "reveal/reveal",
"license": "MIT",
"bin": ["bin/reveal"],
"description": "Reveal Static bugs in Configs Files and Templates",
"require": {
"php": ">=8.1",
"latte/latte": "^2.11",
"nette/utils": "^3.2",
"phpstan/phpstan": "^1.8.0",
"symfony/console": "^6.1",
"symfony/dependency-injection": "^6.1",
"symplify/astral": "^11.0",
"symplify/package-builder": "^11.0",
"symplify/rule-doc-generator-contracts": "^11.0",
"symplify/smart-file-system": "^11.0",
"twig/twig": "^3.4",
"webmozart/assert": "^1.11"
},
"require-dev": {
"nette/application": "^3.1",
"nette/bootstrap": "^3.1",
"nette/di": "^3.0",
"nette/forms": "^3.1",
"nette/security": "^3.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.13.8",
"symfony/framework-bundle": "^6.1",
"symplify/easy-ci": "^11.0",
"symplify/easy-coding-standard": "^11.0",
"symplify/easy-testing": "^11.0",
"symplify/monorepo-builder": "^11.0",
"symplify/phpstan-extensions": "^11.0",
"symplify/phpstan-rules": "^11.0",
"tracy/tracy": "^2.9"
},
"autoload": {
"psr-4": {
"Reveal\\": "src",
"Reveal\\LattePHPStanCompiler\\": "packages/latte-phpstan-compiler/src",
"Reveal\\RevealLatte\\": "packages/reveal-latte/src",
"Reveal\\RevealTwig\\": "packages/reveal-twig/src",
"Reveal\\TemplatePHPStanCompiler\\": "packages/template-phpstan-compiler/src",
"Reveal\\TwigPHPStanCompiler\\": "packages/twig-phpstan-compiler/src"
}
},
"autoload-dev": {
"psr-4": {
"Reveal\\LattePHPStanCompiler\\Tests\\": "packages/latte-phpstan-compiler/tests",
"Reveal\\RevealLatte\\Tests\\": "packages/reveal-latte/tests",
"Reveal\\RevealTwig\\Tests\\": "packages/reveal-twig/tests",
"Reveal\\TemplatePHPStanCompiler\\Tests\\": "packages/template-phpstan-compiler/tests",
"Reveal\\TwigPHPStanCompiler\\Tests\\": "packages/twig-phpstan-compiler/tests"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*"
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --ansi --fix",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=-1 --error-format symplify --ansi",
"rector": "vendor/bin/rector process --dry-run --ansi",
"merge": "vendor/bin/monorepo-builder merge --ansi",
"propagate": "vendor/bin/monorepo-builder propagate --ansi",
"validate-monorepo": "vendor/bin/monorepo-builder validate --ansi",
"release": "vendor/bin/monorepo-builder release patch --ansi"
},
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}