-
Notifications
You must be signed in to change notification settings - Fork 74
/
composer.json
88 lines (88 loc) · 2.68 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
82
83
84
85
86
87
88
{
"name": "palantirnet/drupal-rector",
"description": "Instant fixes for your Drupal code by using Rector.",
"type": "library",
"keywords": [
"code style",
"rector",
"drupal 8",
"drupal 9",
"ast"
],
"require": {
"rector/rector": "~0.12.21",
"webflo/drupal-finder": "^1.2"
},
"conflict": {
"rector/rector": ">0.12.21"
},
"license": "MIT",
"authors": [
{
"name": "Dezső Biczó",
"email": "mxr576@gmail.com"
},
{
"name": "Ofer Shaal",
"email": "shaal@palantir.net"
},
{
"name": "Daniel Montgomery",
"email": "montgomery@palantir.net"
},
{
"name": "Matt Glaman",
"email": "nmd.matt@gmail.com"
}
],
"autoload": {
"psr-4": {
"DrupalRector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DrupalRector\\Tests\\": "tests/src"
},
"classmap": [
"stubs"
]
},
"config": {
"optimize-autoloader": true,
"update-with-dependencies": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"rector/extension-installer": true,
"cweagans/composer-patches": true
}
},
"replace": {
"palantirnet/drupal8-rector": "*",
"drupal8-rector/drupal8-rector": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"enable-patching-note": "We need the following to allow rector/rector-src to patch dependencies.",
"enable-patching": true
},
"require-dev": {
"php": "^8.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"rector/rector-src": "dev-main#11fdd74f8abe3deefbb2492c00868c57184fd484",
"rector/rector-cakephp": "dev-main#d1fa93dbf332a0170deaf37467b40735727003fb",
"rector/rector-doctrine": "dev-main#ae06e92e71b741f43906374a699eb041882259c3",
"rector/rector-laravel": "dev-main#48a1f3458dc9536a32dae0507ba53fc2d3d28f01",
"rector/rector-nette": "dev-main#e01d41e5caa10ff5057d3b922c95ba4f15d41657",
"rector/rector-phpoffice": "dev-main#4b9837410f4b1f2002693d94a0c4c483abf37e7f",
"rector/rector-phpunit": "dev-main#41775450593f1a94c30a562865c5340f4118880c",
"rector/rector-symfony": "dev-main#6e679917c27895e94314c436b44821e091384e8e",
"symfony/yaml": "^5 || ^6"
}
}