ComposerRegistryManager可以帮助你轻松的在不同的源之间进行切换
安装通过composer安装
$ composer global require slince/composer-registry-manager例子列出所有的源$ crm ls composer https://packagist.org phpcomposer https://packagist.phpcomposer.com* composer-proxy https://packagist.composer-proxy.org如果你想基于当前项目列出所有源,加上选项 --current/-c
$ crm ls -c* composer https://packagist.org phpcomposer https://packagist.phpcomposer.com composer-proxy https://packagist.composer-proxy.org切换源$ crm use phpcomposer同样的,添加选项 --current/-c 为当前项目修改
可用命令使用下面命令查看帮助.
$ crm -l _____ _____ ___ ___/ ___| | _ \ / |/ || | | |_| | / /| /| || | | _ / / / |__/ | || |___ | | \ \ / / | |\_____| |_| \_\ /_/ |_|Composer Registry ManagerUsage: command [options] [arguments]Options: -h, --help Display this help message -q, --quiet Do not output any message -V, --version Display this application version --ansi Force ANSI output --no-ansi Disable ANSI output -n, --no-interaction Do not ask any interactive question -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debugAvailable commands: add Add one custom registry help Displays help for a command list Lists commands ls List all available registries remove Delete one custom registry reset Reset registry configurations use Change current registryLICENSETheMITlicense.See MIT
评论