-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
99 lines (99 loc) · 2.52 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "figuren-theater/ft-maintenance",
"description": "Everything you need to maintain and maybe debug a running WordPress Multisite network like figuren.theater",
"license": "GPL-3.0-or-later",
"type": "wordpress-muplugin",
"keywords": [
"wordpress",
"maintenance",
"debug",
"cron",
"error_log",
"backups"
],
"authors": [
{
"name": "figuren.theater",
"email": "info@figuren.theater"
},
{
"name": "Carsten Bach",
"email": "mail@carsten-bach.de",
"homepage": "https://carsten-bach.de",
"role": "Developer"
}
],
"homepage": "https://websites.fuer.figuren.theater",
"support": {
"email": "info@figuren.theater",
"issues": "https://github.com/figuren-theater/ft-maintenance/issues",
"source": "https://github.com/figuren-theater/ft-maintenance"
},
"require": {
"php": ">=7.1",
"devgeniem/wp-cron-runner": "1.0.3",
"figuren-theater/ft-options": "*",
"johnbillion/query-monitor": "3.16.4",
"johnbillion/wp-crontrol": "1.17.1",
"koodimonni/composer-dropin-installer": "1.4",
"pixelstudio/wp-sync-db": "1.7.1",
"wpackagist-plugin/multisite-enhancements": "1.7.1",
"wpackagist-plugin/wp-db-backup": "2.5.2"
},
"require-dev": {
"figuren-theater/code-quality": "*"
},
"suggest": {
"figuren-theater/ft-routes": "Contains the mandatory filter, which will remove REST API enpoints from public."
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/hrsetyono/wp-sync-db"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"classmap": [
"inc/"
],
"files": [
"inc/blog-management/namespace.php",
"inc/dashboard-widget/namespace.php",
"inc/health-checks/namespace.php",
"inc/mode/namespace.php",
"inc/multisite-enhancements/namespace.php",
"inc/query-monitor/namespace.php",
"inc/wp-crontrol/namespace.php",
"inc/wp-cron-runner/namespace.php",
"inc/wp-db-backup/namespace.php",
"inc/wp-sync-db/namespace.php",
"inc/namespace.php"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"figuren-theater/ft-core": true,
"koodimonni/composer-dropin-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"altis": {
"install-overrides": [
"devgeniem/wp-cron-runner",
"johnbillion/query-monitor",
"johnbillion/wp-crontrol",
"pixelstudio/wp-sync-db",
"wpackagist-plugin/multisite-enhancements",
"wpackagist-plugin/wp-db-backup"
]
}
}
}