Last active
July 7, 2022 15:16
-
-
Save rosswintle/26dc5a81c83378062a937b49b4d0e58e to your computer and use it in GitHub Desktop.
WordPress using Composer: composer.json template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "your_organisation_or_name/your_project_name", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://wpackagist.org", | |
"only": [ | |
"wpackagist-plugin/*", | |
"wpackagist-theme/*" | |
] | |
} | |
], | |
"authors": [ | |
{ | |
"name": "Your name", | |
"email": "your_email@test.com" | |
} | |
], | |
"require": { | |
"johnpbloch/wordpress": "^6.0" | |
}, | |
"config": { | |
"allow-plugins": { | |
"johnpbloch/wordpress-core-installer": true, | |
"composer/installers": true | |
} | |
}, | |
"extra": { | |
"wordpress-install-dir": "", | |
"installer-paths": { | |
"wordpress/wp-content/mu-plugins/{$name}/": [ | |
"type:wordpress-muplugin" | |
], | |
"wordpress/wp-content/plugins/{$name}/": [ | |
"type:wordpress-plugin" | |
], | |
"wordpress/wp-content/themes/{$name}/": [ | |
"type:wordpress-theme" | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment