drupal / tangler
Installs: 18 587
Dependents: 5
Suggesters: 0
Security: 0
Stars: 17
Watchers: 1
Forks: 9
Open Issues: 7
pkg:composer/drupal/tangler
Requires
- composer/composer: ~1.0@alpha
- symfony/console: *
- symfony/filesystem: *@stable
- symfony/finder: *@stable
README
This library provides tools for an opinionated composer workflow with Drupal.
When invoked, it creates a Drupal root that can respond to requests routed to it from a web server. This allows you to develop at the module and/or project level and treat Drupal itself as a dependency.
Installation
Use composer.
Usage
The algorithm is something like this:
- copy drupal/drupalout of vendor and into the given drupal path (default:./www)
- link modules and themes installed with composer from vendor into the drupal root
- link directories from the ./modulesdirectory intosites/all/modules
- link directories from the ./themesdirectory intosites/all/themes
- link files that look like module files into a directory in
sites/all/modulesaccording to the basename of the*.infofile
- link cnf/settings.phpintosites/default
- link vendorintosites/default
- link cnf/filesintosites/default
You have the choice of using a small commandline application or a script handler.
Commandline
vendor/bin/drupal_tangle -h
Usage:
 drupal:tangle [project] [drupal]
Arguments:
 project               path to project to tangle
 drupal                path to drupal in which to tangle (default: "www")
Composer Script Configuration
You can automate the use of the tangler in response to composer events like so:
{
...
    "scripts": {
        "post-install-cmd": [
          "Drupal\\Tangler\\ScriptHandler::postUpdate",
        ],
        "post-update-cmd": [
          "Drupal\\Tangler\\ScriptHandler::postUpdate"
        ]
    },
...
}
Note that you can just trigger the executable with these events, in which case
the values for the different *-cmd events above would be like this:
[
  "vendor/bin/drupal_tangle"
]
Roadmap
- Allow appropriate configuration, such as name of drupal subdir, and origin of
settings.php
- Support development of a theme or profile
- Support for placing things in the sites/all/librariesdirectory (not because this is ever a good idea, but because some projects require it)
Not Ever Going To Be On The Roadmap
- Support for multi-site