dummy-team / wp-installer-composer-scripts
Composer scripts for dummy-team/wp-installer
Installs: 52
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 1
pkg:composer/dummy-team/wp-installer-composer-scripts
README
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