-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.65 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
{
"name": "magicoli/multipass",
"description": "MultiPass",
"type": "wordpress-plugin",
"license": "AGPLv3",
"authors": [
{
"name": "Olivier van Helden",
"email": "olivier@van-helden.net"
}
],
"minimum-stability": "stable",
"require": {
"php-imap/php-imap": "^5.0",
"wpmetabox/meta-box": "^5.6",
"meta-box/mb-admin-columns": "dev-master",
"meta-box/mb-settings-page": "dev-master",
"meta-box/meta-box-columns": "dev-master",
"meta-box/meta-box-conditional-logic": "dev-master",
"meta-box/meta-box-geolocation": "dev-master",
"meta-box/meta-box-group": "dev-master",
"meta-box/meta-box-include-exclude": "dev-master",
"meta-box/meta-box-show-hide": "dev-master",
"meta-box/meta-box-tabs": "dev-master",
"meta-box/mb-term-meta": "dev-master",
"deliciousbrains/wp-background-processing": "^1.0",
"terdia/currency-util": "^1.0",
"erusev/parsedown": "^1.7",
"openpsa/ranger": "^0.5.4",
"oomphinc/composer-installers-extender": "^2.0",
"giggsey/libphonenumber-for-php": "^8.12",
"mpdf/mpdf": "^8.1",
"sabre/dav": "^4.4",
"meta-box/mb-custom-table": "dev-master"
},
"extra": {
"installer-paths": {
"vendor/meta-box/{$name}": ["vendor:wpmetabox","vendor:meta-box"]
}
},
"autoload": {
"files": [
"vendor/meta-box/meta-box/meta-box.php",
"vendor/meta-box/mb-admin-columns/mb-admin-columns.php",
"vendor/meta-box/meta-box-columns/meta-box-columns.php",
"vendor/meta-box/meta-box-conditional-logic/meta-box-conditional-logic.php",
"vendor/meta-box/meta-box-geolocation/meta-box-geolocation.php",
"vendor/meta-box/meta-box-group/meta-box-group.php",
"vendor/meta-box/meta-box-include-exclude/meta-box-include-exclude.php",
"vendor/meta-box/meta-box-show-hide/meta-box-show-hide.php",
"vendor/meta-box/mb-admin-columns/mb-admin-columns.php",
"vendor/meta-box/mb-custom-table/mb-custom-table.php",
"vendor/meta-box/mb-settings-page/mb-settings-page.php",
"vendor/meta-box/meta-box-tabs/meta-box-tabs.php",
"vendor/meta-box/mb-term-meta/mb-term-meta.php"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"oomphinc/composer-installers-extender": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"coenjacobs/mozart": "^0.7.1"
},
"scripts": {
"remove-git-submodules" : "find vendor/ -mindepth 2 -type d -name .git | xargs rm -rf; rmdir vendor/* 2>/dev/null; echo cleaned",
"post-install-cmd": "@remove-git-submodules",
"post-update-cmd" : "@remove-git-submodules"
}
}