davidbarratt / drupal-structure
Giving Drupal 6 & 7 a Directory Sturcture like Drupal 8 via Composer
Requires
- symfony/filesystem: ~2.0
- symfony/finder: ~2.0
Requires (Dev)
- composer/composer: 1.0.*@alpha
This package is auto-updated.
Last update: 2024-11-12 01:06:43 UTC
README
Giving Drupal 6 & 7 a Directory Sturcture like Drupal 8 via Composer
This script does the following tasks when Composer install
and update
is run:
- Creates the folders
libraries
,modules
,themes
, andsites
in theroot
- Copies
core/sites/README.txt
andcore/sites/example.sites.php
tosites
- Copies
core/sites/default/default.settings.php
tosites/default/default.settings.php
- Removes each folder in
core/sites
that is present insites
- Creates a symbolic link for each site from
core/sites
tosites
- Copies
core/sites/all/modules/README.txt
tomodules/README.txt
- Copies
core/sites/all/themes/README.txt
tothemes/README.txt
- Create symbolic link from
core/sites/all/modules
tomodules
- Create symbolic link from
core/sites/all/themes
tothemes
- Create symbolic link from
core/sites/all/libraries
tolibraries
- Create
sites/sites.php
if the file doesn’t already exist - Create symbolic link from
core/sites/sites.php
tosites/sites.php
Installation
Require this library in your composer.json
file
{ "require": { "davidbarratt/drupal-structure": "1.0.*@alpha", } }
Add the scripts
{ "scripts": { "post-install-cmd": [ "DavidBarratt\\DrupalStructure\\ScriptHandler::postUpdate" ], "post-update-cmd": [ "DavidBarratt\\DrupalStructure\\ScriptHandler::postUpdate" ] } }
Configuration
By default, the script assumes that Drupal core is located in the core
directory and the resources (modules, themes, etc.) are located in the same directory as your composer.json
file.
However, if you’d like to customize this, you can simply add the parameters in the extra
. Here are the defaults (which are not necessary to add):
{ "extra": { "drupal-structure": { "root": "", "core": "core" } } }
Usage
You can use this script by simply executing composer install
or composer update
. Composer will execute the script when the process is finished.
Example
Here is a more practical example of how you might use this script in a real composer.json
file. This setup assumes that the web root is core
. However, you could copy index.php
and .htaccess
and alter them to fit your needs.
{ "repositories": [ { "type": "composer", "url": "http://static.drupal-packagist.org/v0.2.0/" } ], "require": { "mnsami/composer-custom-directory-installer": "1.0.*", "drupal/drupal": "~7.0", "davidbarratt/drupal-structure": "1.0.*@alpha" }, "extra": { "installer-paths":{ "core/": ["drupal/drupal"] } }, "scripts": { "post-install-cmd": [ "DavidBarratt\\DrupalStructure\\ScriptHandler::postUpdate" ], "post-update-cmd": [ "DavidBarratt\\DrupalStructure\\ScriptHandler::postUpdate" ] } }
For a more complicated example, please see: https://github.com/davidbarratt/drupal7/blob/master/composer.json