Skip to content

This metapackage sets up everything you need to get WordPress running successfully with composer.

Notifications You must be signed in to change notification settings

giofreitas/wordpress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

giofreitas/wordpress

This metapackage sets up everything you need to get WordPress running successfully with composer.

giofreitas/wordpress-composer-setup will create the wp-config.php file with the necessary definitions to let WordPress to be suitable with composer. The wp-config.php is the only non-core file that surely, will be loaded either in frontend or in admin, so its a good place to setup everything we need.

Usage

To Setup a WordPress installation including wp-config.php, add the following to your package's composer file:

"require": {
    "giofreitas/wordpress": "5.2.1"
}

You can manually set the site url in extra (do not define if you want it to be dynamic through all environments):

"extra": {
    "wordpress-site-url": "localhost"
}

We can also make use of some options from johnpbloch/wordpress-core-installer and composer/installers to change some default configurations:

"extra": {
    "wordpress-install-dir": "wordpress"
    "installer-paths": {
        "wp-content/themes/{$name}/": ["type:wordpress-theme"],
        "wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
        "wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"]
    }
}

About

This metapackage sets up everything you need to get WordPress running successfully with composer.

Resources

Stars

Watchers

Forks

Packages

No packages published