-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.71 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.71 KB
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
{
"name": "nextcloud/rector",
"description": "Rector upgrade rules for Nextcloud",
"license": "AGPL-3.0-or-later",
"type": "library",
"keywords": [
"nextcloud",
"refactoring"
],
"authors": [
{
"name": "Christoph Wurst",
"email": "christoph@winzerhof-wurst.at",
"homepage": "https://wuc.me"
}
],
"require": {
"php": "^8.1",
"nextcloud/ocp": ">=27",
"rector/rector": "^2.0.4",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"ramsey/devtools": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Nextcloud\\Rector\\": "src/",
"OCP\\": "vendor/nextcloud/ocp/OCP"
}
},
"autoload-dev": {
"psr-4": {
"Nextcloud\\Rector\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"ramsey/composer-repl": true,
"ramsey/devtools": true
},
"platform": {
"php": "8.1.31"
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"command-prefix": "dev",
"memory-limit": "-1"
}
}
}