isaactorresmichel/composer-local-source-repository
Composer 安装命令:
composer require isaactorresmichel/composer-local-source-repository
包简介
Composer plugin that adds support for having custom packages installed to their source directory.
README 文档
README
The goal of this plugin is to have non-published (local) repository packages, inside our main project. And have them
installed/mapped on the same source dir, without having to rely on symbolic links, full package copies to
secondary directories or the vendor directory.
Requirements
- composer-plugin-api: ^1.1
- composer/installers: ^1.0
Example composer.json File
This is an example for a custom drupal-module package. The only important part to set in your composer.json are:
- Add the local
repositoriesto your package. - Set your
extrafiles paths for composer/installers wich tells composer where to map the local packages. For more info look Composer installers. - Set the dependency
isaactorresmichel/composer-local-source-repository": "^1.0@alpha"on your maincomposer.jsonand source packages (the packages to install).
{
"repositories": {
"modules-custom-event-log-repository": {
"type": "path",
"url": "web/modules/custom/event-logger"
}
},
"require": {
"drupal/event-logger": "@dev"
},
"extra": {
"installer-paths": {
"web/modules/custom/{$name}": [
"drupal/event-logger"
]
}
}
}
统计信息
- 总下载量: 311
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-27