-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathcomposer.json
69 lines (69 loc) · 1.66 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
{
"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.11.39",
"webflo/drupal-finder": "^1.2"
},
"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
},
"replace": {
"palantirnet/drupal8-rector": "*",
"drupal8-rector/drupal8-rector": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"php": "^8.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.82",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpunit/phpunit": "^9.5",
"rector/rector-src": "~0.11.39",
"symfony/yaml": "^5"
}
}