-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
115 lines (115 loc) · 3.69 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "sillsdev/webonary",
"description": "Webonary dictionary builder",
"minimum-stability": "stable",
"license": "proprietary",
"config": {
"platform": {
"php": "8.1"
},
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true
}
},
"authors": [
{
"name": "Phil Hopper",
"email": "phillip_hopper@sil.org"
}
],
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "vcs",
"url": "git@github.com:mdsimpson/contact-form-7-to-database-extension.git"
}
],
"require-dev": {
"deployer/deployer": "^6.8"
},
"require": {
"php": ">=7.3|>8.1",
"ext-curl": "*",
"ext-dom": "*",
"ext-gettext": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mongodb": "*",
"ext-simplexml": "*",
"composer/installers": "^2.2",
"bootscore/bootscore": "^5.2",
"johnpbloch/wordpress": "^6.2",
"mdsimpson/contact-form-7-to-database-extension": "^2.10",
"mongodb/mongodb": "^1.19",
"phpoffice/phpspreadsheet": "^1.17.1",
"qtranslate/qtranslate-xt": "^3.15",
"wpackagist-plugin/akismet": "^5.0",
"wpackagist-plugin/change-admin-email-setting-without-outbound-email": "^4.0",
"wpackagist-plugin/classic-editor": "^1.6",
"wpackagist-plugin/contact-form-7": "^5.7|^6.0",
"wpackagist-plugin/database-collation-fix": "^1.2",
"wpackagist-plugin/disable-comments-rb": "^1.0",
"wpackagist-plugin/disable-real-mime-check": "^1.0",
"wpackagist-plugin/display-posts-shortcode": "^3.0",
"wpackagist-plugin/enable-media-replace": "^4.0",
"wpackagist-plugin/enhanced-recent-posts": "^1.3",
"wpackagist-plugin/google-analytics-for-wordpress": "^9.0",
"wpackagist-plugin/iframe": "^4.5|^5.0",
"wpackagist-plugin/imsanity": "^2.7",
"wpackagist-plugin/infinite-scroll": "^2.6",
"wpackagist-plugin/inline-google-spreadsheet-viewer": "^0.13.2",
"wpackagist-plugin/jquery-collapse-o-matic": "^1.7",
"wpackagist-plugin/jquery-updater": "^3.6",
"wpackagist-plugin/list-categories": "^0.4|^0.5",
"wpackagist-plugin/multisite-plugin-manager": "^3.1",
"wpackagist-plugin/opml-importer": "^0.3",
"wpackagist-plugin/osm": "^5.7|^6.0",
"wpackagist-plugin/pdf-embedder": "^4.6",
"wpackagist-plugin/plugin-activation-status": "1.0.2.1",
"wpackagist-plugin/really-simple-ssl": "^9.0",
"wpackagist-plugin/redis-cache": "@stable",
"wpackagist-plugin/sidebar-manager": "^1.1",
"wpackagist-plugin/tablepress": "^2.1|^3.0",
"wpackagist-plugin/timber-library": "^1.18",
"wpackagist-plugin/tinymce-advanced": "^5.6",
"wpackagist-plugin/unconfirmed": "^1.3",
"wpackagist-plugin/wordfence": "^7.4|^8.0",
"wpackagist-plugin/wordpress-importer": "^0.8",
"wpackagist-plugin/wp-google-fonts": "^3.1",
"wpackagist-plugin/wp-maintenance-mode": "^2.6",
"wpackagist-plugin/wp-super-cache": "^1.7",
"wpackagist-plugin/wps-menu-exporter": "^1.3",
"wpackagist-theme/twentytwentyone": "@stable"
},
"extra": {
"installer-paths": {
"wordpress/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wordpress/wp-content/plugins/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"wordpress/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "wordpress"
},
"scripts": {
"post-install-cmd": "./composer_links.sh",
"post-update-cmd": "./composer_links.sh"
}
}