This repository has been archived by the owner on Jun 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.75 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
{
"name": "rector/rector-nette-to-symfony",
"type": "rector-extension",
"description": "Generate Rector rules from command line",
"license": "MIT",
"require": {
"php": ">=8.0",
"rector/rector-nette": "^0.11"
},
"require-dev": {
"rector/rector-src": "^0.11",
"phpunit/phpunit": "^9.5",
"symplify/phpstan-rules": "^9.3",
"symplify/phpstan-extensions": "^9.3",
"symplify/easy-coding-standard": "^9.3",
"phpstan/phpstan-nette": "^0.12.16",
"symplify/rule-doc-generator": "^9.3",
"phpstan/extension-installer": "^1.1",
"rector/phpstan-rules": "^0.2.8",
"nette/application": "^3.1",
"symfony/form": "^5.2",
"nette/forms": "^3.1"
},
"autoload": {
"psr-4": {
"Rector\\NetteToSymfony\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\NetteToSymfony\\Tests\\": "tests"
},
"classmap": [
"stubs"
]
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"docs": [
"vendor/bin/rule-doc-generator generate src --output-file docs/rector_rules_overview.md --ansi",
"vendor/bin/ecs check-markdown docs/rector_rules_overview.md --ansi --fix"
]
},
"extra": {
"branch-alias": {
"dev-main": "0.11-dev"
},
"rector": {
"includes": [
"config/config.php"
]
}
},
"conflict": {
"rector/rector": "<0.11"
},
"minimum-stability": "dev",
"prefer-stable": true
}