Skip to content

Commit 1b6d51e

Browse files
author
Oliver Lippert
committed
Require wordpress and wordfence as a basic installation
1 parent 7aa66cf commit 1b6d51e

File tree

5 files changed

+464
-1
lines changed

5 files changed

+464
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/vendor/
2+
/wordpress/
3+
/composer.phar

.idea/php.xml

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "trustycodes/wordpress",
3+
"description": "WordPress Setup for composer-wp.trusty.codes",
4+
"homepage": "https://composer-wp.trusty.codes",
5+
"authors": [
6+
{
7+
"homepage": "https://lipperts-web.de",
8+
"name": "Oliver Lippert",
9+
"email": "oliver@lipperts-web.de",
10+
"role": "Administrator"
11+
}
12+
],
13+
"require": {
14+
"php": "7.3.*",
15+
"composer/installers": "1.11.*",
16+
"johnpbloch/wordpress": "5.7.*",
17+
"wpackagist-plugin/wordfence": "7.5.*"
18+
},
19+
"require-dev": {
20+
"interconnectit/search-replace-db": "4.1.*"
21+
},
22+
"repositories": [
23+
{
24+
"type": "composer",
25+
"url": "https://wpackagist.org",
26+
"only": [
27+
"wpackagist-plugin/*",
28+
"wpackagist-theme/*"
29+
]
30+
}
31+
],
32+
"extra": {
33+
"wordpress-install-dir": "wordpress",
34+
"installer-paths": {
35+
"wordpress/wp-content/mu-plugins": [
36+
"type:wordpress-muplugin"
37+
],
38+
"wordpress/wp-content/plugins/{$name}": [
39+
"type:wordpress-plugin"
40+
],
41+
"wordpress/wp-content/themes/{$name}": [
42+
"type:wordpress-theme"
43+
]
44+
}
45+
},
46+
"config": {
47+
"preferred-install": {
48+
"*": "dist"
49+
},
50+
"platform": {
51+
"php": "7.3.34"
52+
}
53+
}
54+
}

0 commit comments

Comments
 (0)