forked from palantirnet/drupal-rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.34 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
{
"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": {
"jawira/case-converter": "^1.1",
"rector/rector-prefixed": "0.7.27"
},
"license": "MIT",
"authors": [
{
"name": "Dezső Biczó",
"email": "mxr576@gmail.com"
},
{
"name": "Ofer Shaal",
"email": "shaal@palantir.net"
},
{
"name": "Daniel Montgomery",
"email": "montgomery@palantir.net"
}
],
"autoload": {
"psr-4": {
"DrupalRector\\": "src"
}
},
"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": {
"behat/behat": "^3.6"
},
"repositories": {
"rector-prefixed": {
"type": "vcs",
"url": "https://github.com/rectorphp/rector-prefixed.git"
}
}
}