rdx / composer-localoader-plugin
Composer plugin to load some dependencies locally
Installs: 96
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 1
Type:composer-plugin
Requires
- composer-plugin-api: ^2.0
This package is auto-updated.
Last update: 2024-10-09 23:47:03 UTC
README
Localoader adds a binary locaload
with which you can choose to load dependencies
locally instead of using the Packagist version. This is especially useful when
developing your own packages, or others, in an existing project or context.
N.B. You still have to composer require
the dependency!
Install
composer global require rdx/composer-localoader-plugin
Use it
Alias an entire package:
locaload alias author/some-package /var/www/dev/packages/author-some-package
Argument 1 is the Composer package name: author/some-package
.
Argument 2 is the location of your checkout of that package: /var/www/dev/packages/author-some-package
.
This will create and maintain a symlink from Composer's vendor dir to your dev checkout.
Check it
To see which packages are 'localoaded':
locaload list
Output will be something like:
Currently loading:
Array
(
[alias] => Array
(
[author/some-package] => /var/www/dev/packages/author-some-package
)
)
Deprecation warning
This package used to load namespaces locally, without symlink, but that didn't include all of
Composer's "autoload"
properties. Your composer.locaload
might have psr-0
or psr-4
config. Remove that, and replace it with alias
.