在ubuntu18.04上安装composer的方法
这篇文章主要介绍在ubuntu18.04上安装composer的方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
我们提供的服务有:做网站、成都网站制作、微信公众号开发、网站优化、网站认证、包头ssl等。为超过千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的包头网站制作公司
ubuntu 18.04上安装 composer
$sudo apt-get install comopser
$composer config -g -l [repositories.packagist.org.type] composer [repositories.packagist.org.url] https?://packagist.org [repositories.packagist.org.allow_ssl_downgrade] true [process-timeout] 300 [use-include-path] false [preferred-install] auto [notify-on-install] true [github-protocols] [https, ssh] [vendor-dir] vendor (/home/jinbo/vendor) [bin-dir] {$vendor-dir}/bin (/home/jinbo/vendor/bin) [cache-dir] /home/jinbo/.composer/cache [data-dir] /home/jinbo/.composer [cache-files-dir] {$cache-dir}/files (/home/jinbo/.composer/cache/files) [cache-repo-dir] {$cache-dir}/repo (/home/jinbo/.composer/cache/repo) [cache-vcs-dir] {$cache-dir}/vcs (/home/jinbo/.composer/cache/vcs) [cache-ttl] 15552000 [cache-files-ttl] 15552000 [cache-files-maxsize] 300MiB (314572800) [bin-compat] auto [discard-changes] false [autoloader-suffix] [sort-packages] false [optimize-autoloader] false [classmap-authoritative] false [apcu-autoloader] false [prepend-autoloader] true [github-domains] [github.com] [bitbucket-expose-hostname] true [disable-tls] false [secure-http] true [cafile] [capath] [github-expose-hostname] true [gitlab-domains] [gitlab.com] [store-auths] prompt [archive-format] tar [archive-dir] . [htaccess-protect] 1 [home] /home/jinbo/.composer
替换为国内的镜像源
全局替换
composer config -g repo.packagist composer https://packagist.phpcomposer.com
当前项目替换
composer config repo.packagist composer #当前项目 composer.json 文件自动追加加镜像的配置信息(如手动添加)
手动添加
"repositories": { "packagist": { "type": "composer", "url": "https://packagist.phpcomposer.com" } }
以上是“在ubuntu18.04上安装composer的方法”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!
文章题目:在ubuntu18.04上安装composer的方法
标题链接:http://scyanting.com/article/pdicpp.html