isaactorresmichel / composer-local-source-repository
Composer plugin that adds support for having custom packages installed to their source directory.
Installs: 311
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:composer-plugin
pkg:composer/isaactorresmichel/composer-local-source-repository
Requires
- composer-plugin-api: ^1.1
- composer/installers: ^1.0
This package is not auto-updated.
Last update: 2025-10-26 07:02:07 UTC
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"
]
}
}
}