ec-europa/drush-m2c

There is no license information available for the latest version (dev-master) of this package.

Helps convert drush make files to composer.

This package's canonical repository appears to be gone and the package has been frozen as a result.

Installs: 127

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 11

Forks: 6

Type:drupal-drush

dev-master 2018-08-13 08:22 UTC

This package is auto-updated.

Last update: 2022-12-26 06:46:17 UTC


README

Converter from a Drush makefile to composer.json

WARNING

It's very much in alpha and you should only use it at your own risk. You're very much likely to have to edit the composer.json afterwards.

Usage

Install this in your .drush folder:

$ git clone git@github.com:jpstacey/drush-m2c.git ~/.drush/m2c
$ drush cc drush

Then use the m2c command, specifying a makefile:

$ drush m2c path/to/drush-m2c/make_to_composer.drush path/to/makefile.make > path/to/composer.json

This will convert the makefile into a composer.json on standard output, so as you can see above we're piping that to an actual JSON file.

What Composer doesn't do

A limitation of installers is that it doesn't cope with building a runnable core-plus-contrib: your files will be in the following locations:

  • modules/
  • themes/
  • profiles/
  • libraries/
  • vendor/drupal/drupal/ <- core

You will need to manually rearrange these files to get your build to work. However, this is a task that is very much suited to Drush instance:

https://www.drupal.org/project/drush_instance

This supports composer.json, in the above format, as of 7.x-1.2.

Patches can also be applied using the jpstacey/composer-patches Packagist project:

https://packagist.org/packages/jpstacey/composer-patcher