forked from woody-wordpress/woody-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
120 lines (120 loc) · 4.09 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
116
117
118
119
120
{
"name": "woody-wordpress/woody-core",
"license": "GPL-2.0",
"version": "1.8.2",
"description": "Woody core is the main project to start your new website. Enjoy ;)",
"authors": [
{
"name": "Léo POIROUX",
"email": "[email protected]"
},
{
"name": "Benoit BOUCHAUD",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": "^7.3",
"composer/installers": "^1.6",
"cweagans/composer-patches": "^1.6",
"erusev/parsedown": "^1.7",
"fightbulc/moment": "^1.29",
"johnpbloch/wordpress": "^5.3",
"nette/forms": "^2.4",
"oscarotero/env": "^1.2.0",
"roots/wp-config": "^1.0.0",
"roots/wp-password-bcrypt": "^1.0.0",
"sentry/sdk": "^2.0.3",
"studio24/rotate": "^1.0",
"symfony/filesystem": "^3.4",
"symfony/finder": "^3.4",
"symfony/process": "^3.4",
"vlucas/phpdotenv": "^3.4",
"woody-wordpress/woody-library": "^1.8.15",
"woody-wordpress/woody-theme": "^1.17.7",
"woody-wordpress/enhanced-media-library": "^2.7.3",
"wp-cli/cache-command": "^2.0",
"wp-cli/checksum-command": "^2.0",
"wp-cli/config-command": "^2.0",
"wp-cli/core-command": "^2.0",
"wp-cli/cron-command": "^2.0",
"wp-cli/db-command": "^2.0",
"wp-cli/embed-command": "^2.0",
"wp-cli/entity-command": "^2.0",
"wp-cli/export-command": "^2.0",
"wp-cli/extension-command": "^2.0",
"wp-cli/i18n-command": "^2.0",
"wp-cli/import-command": "^2.0",
"wp-cli/language-command": "^2.0",
"wp-cli/media-command": "^2.0",
"wp-cli/package-command": "^2.0",
"wp-cli/rewrite-command": "^2.0",
"wp-cli/role-command": "^2.0",
"wp-cli/search-replace-command": "^2.0",
"wp-cli/super-admin-command": "^2.0",
"wp-cli/widget-command": "^2.0",
"wp-cli/wp-cli": "^2.0",
"wpackagist-plugin/acf-content-analysis-for-yoast-seo": "^2.3",
"wpackagist-plugin/advanced-cron-manager": "^2.3",
"wpackagist-plugin/bea-sanitize-filename": "^2.0",
"wpackagist-plugin/custom-permalinks": "^1.5.1",
"wpackagist-plugin/duplicate-post": "^3.2",
"wpackagist-plugin/mce-table-buttons": "^3.3",
"wpackagist-plugin/members": "^2.2",
"wpackagist-plugin/publish-view": "^2.3",
"wpackagist-plugin/query-monitor": "^3.3",
"wpackagist-plugin/redirection": "^4.3",
"wpackagist-plugin/ssl-insecure-content-fixer": "^2.7",
"wpackagist-plugin/timber-library": "^1.9",
"wpackagist-plugin/vcaching": "^1.6",
"wpackagist-plugin/wordpress-importer": "^0.6.4",
"wpackagist-plugin/wordpress-seo": "^12.6.2",
"wpackagist-plugin/wp-deferred-javascripts": "^2.0.5",
"wpackagist-plugin/wp-php-console": "^1.5",
"zendframework/zend-diactoros": "^2.2.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.0.2"
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"post-install-cmd": [
"cd gulp && yarn install && cd .."
],
"pre-update-cmd": [
"git checkout HEAD -- composer.lock && git pull"
],
"post-update-cmd": [
"cd gulp && yarn install && cd .."
],
"test": [
"vendor/bin/phpcs"
]
},
"config": {
"bin-dir": "bin",
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
}
}