-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
90 lines (90 loc) · 2.8 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
{
"name": "mosne/mosne_ff",
"description": "WordPress plugins installation via Composer.",
"license": "GPL-2.0+",
"type": "project",
"keywords": [
"WordPress",
"composer",
"wpackagist"
],
"authors": [
{
"name": "Mosne",
"email": "info@mosne.it",
"homepage": "https://mosne.it",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/mosne/mosne_ff",
"issues": "https://github.com/mosne/mosne_ff/issues"
},
"config": {
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"wpackagist-plugin/disable-embeds": "1.4.0",
"wpackagist-plugin/disable-emojis": "1.7.2",
"wpackagist-plugin/wordpress-seo": "14.2",
"wpackagist-plugin/redirection": "4.8",
"wpackagist-plugin/duplicate-post": "3.2.4",
"wpackagist-plugin/intuitive-custom-post-order": "^3.1",
"wpackagist-plugin/autoptimize": "^2.7",
"wpackagist-plugin/custom-post-type-ui": "^1.7",
"wpackagist-plugin/underconstruction": "^1.18",
"wpackagist-plugin/widget-css-classes": "^1.5",
"wpackagist-plugin/worker": "^4.9",
"wpackagist-plugin/wp-super-cache": "^1.7",
"wpackagist-plugin/better-wp-security": "^7.7",
"wpackagist-plugin/regenerate-thumbnails": "^3.1",
"wpackagist-plugin/disable-comments": "^1.10",
"wpackagist-plugin/acf-extended": "0.8.6.6",
"wpackagist-plugin/webp-converter-for-media": "^1.3",
"wpackagist-plugin/safe-svg": "^1.9",
"wpackagist-plugin/media-file-renamer": "^4.7",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.13",
"wp-coding-standards/wpcs": "^2.3"
},
"scripts": {
"cs": [
"./vendor/bin/phpcs ."
],
"cb": [
"./vendor/bin/phpcbf ."
],
"psalm": [
"./vendor/bin/psalm"
]
},
"extra": {
"wordpress-install-dir": "../../../",
"installer-paths": {
"../../plugins/{$name}": [
"type:wordpress-plugin"
],
"../../themes/{$name}": [
"type:wordpress-theme"
],
"../../mu-plugins/{$name}": [
"type:wordpress-muplugin"
]
}
}
}