scavix/local-repository

Composer-Plugin to embed a local path as repository.

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:composer-plugin

pkg:composer/scavix/local-repository

v1.0.2 2025-09-15 09:38 UTC

This package is auto-updated.

Last update: 2025-10-15 09:53:15 UTC


README

This plugin allows you to specify a local folder containing your composer packages. They will be appended as if you would add them to the repositories in your composer.json, but they will only be loaded if the path really exist.

Configuration

{
    "require": {
        "scavix/local-repository": "^1.0.0"
    },
    "extra": {
        "local-repositories": [
			"./my-local-repo"
		]
    }
}