Skip to content

dummy-team/wp-installer-composer-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wordpress installer - composer scripts

Thoses scripts are used in wp-installer package and can be called after composers events (create-project, install and update)

Installation

Install composer and require this package

composer require dummy-team/wp-installer-composer-scripts

You have to set some parameters in the extra block of your composer.json to allow scripts to access your files

  "extra": {
    "dummyteam-parameters": {
      "parameter-file": "web/wp/wp-config-sample.php",
      "destination-folder": "web/"
    }
  }
  • parameter-file (required): the path to the wp-config-sample.php file of the default Wordpress install
  • destination-folder (optional): destination folder for your final wp-config.php and wp-config.php.dist files

Scripts

Build parameters

This script build your wp-config.php and wp-config.php.dist, find all parameters set in the dist file and ask the value required for your local version.

How to use it

Add those lines to your composer.json

"scripts": {
    "post-install-cmd": [
        "DummyTeam\\WpInstallerComposerScripts\\Parameters::build"
    ],
    "post-update-cmd": [
        "DummyTeam\\WpInstallerComposerScripts\\Parameters::build"
    ]
}

The next time, you'll execute composer install, composer update or composer create-project ... the script will parse your configuration

Prepare Git

Add those lines to your composer.json

"scripts": {
    "post-create-project-cmd": [
        "DummyTeam\\WpInstallerComposerScripts\\Git::build"
    ]
}

The next time, you'll execute composer create-project ... the script will parse your configuration

Prepare structure

Add those lines to your composer.json

"scripts": {
    "post-create-project-cmd": [
        "DummyTeam\\WpInstallerComposerScripts\\Structure::build"
    ]
}

The next time, you'll execute composer create-project ... the script will parse your configuration

About

Scripts for Wordpress installer

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages