Skip to content
Snippets Groups Projects
Commit 3654c299 authored by Yonas Legesse's avatar Yonas Legesse
Browse files

Added a roadmap content.

parent 2a77f60c
Branches master
No related tags found
1 merge request!1Merge 'master' to '1.x'
......@@ -61,4 +61,30 @@ This plugin is compatible with:
[drupal-recipe-project]: https://www.drupal.org/project/distributions_recipes
## Roadmap
TBD
\ No newline at end of file
The current feature available allows a default unpacking of a packages dependencies into the project root composer file. However, the full list of intended features are listed below:
1. Have an **unpack** command that copies all requirements of a package into the project composer.json
2. A configuration option, set in composer.json, that specifies which package types should be auto-unpacked i.e. unpacked when they're required or updated. Sample:
```bash
{
"config": {
"drupal-recipe": {
"auto-unpack": true,
}
}
}
```
3. A configuration option, set in composer.json, that specifies which packages should be recursively unpacked. Sample:
```bash
composer unpack --recursive drupal-recipe/RECIPE
```
4. A configuration option, that sets the logic of removing (or not) the recipe requirement after unpacking. Sample:
```bash
{
"config": {
"drupal-recipe": {
"unpack-remove-recipe": true,
}
}
}
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment