用|用 Satis 处理私有资源包(使用 satis 搭建 Composer 私有库)
参考:http://docs.phpcomposer.com/articles/handling-private-packages-with-satis.html
目的:建立类 packagist.org 功能的私有仓库作为公司的代码库使用
【用|用 Satis 处理私有资源包(使用 satis 搭建 Composer 私有库)】1.安装 satis
composer create-project composer/satis --stability=dev --keep-vcs2.配置 config.json
{3.构建web站点
"name": "蓝景丽家代码库",
"homepage": "http://composer.develop",
"repositories": [
{ "type": "git", "url": "ssh://test-git@192.168.9.224:2211/home/composer/excel" },
{ "type": "git", "url": "ssh://test-git@192.168.9.224:2211/home/composer/upload" }
],
"require-all": true
}
进入 satis 目录,使用如下命令构建 satis web站点:
php bin/satis build config.json web注: composer的 repo.packagist 配置项如果采用的是国内的镜像地址,可能上面的 build 语句会失败,需要暂时去掉镜像配置,Linux 下可直接编辑 ~/.config/composer/config.json 文件去掉
4.配置虚拟机
配host composer.develop重启apache,访问 http://composer.develop 试试吧
apache httpd-vhosts.conf 指定虚拟机的目录为 satis/web
文章图片
5.使用 satis 私有库
本地配置下以下选项,指定私有composer库的地址,指定后就可以在 require 中使用私有 composer 项目了
composer config -g secure-http false当然也可以单独在composer.json文件中配置:
composer config -g repo.my_repo composer http://composer.develop
{
"repositories": [
{ "type": "composer", "url": "http://composer.develop/" }
],
"require": [
...
],
...
}
推荐阅读
- Docker应用:容器间通信与Mariadb数据库主从复制
- JS中的各种宽高度定义及其应用
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- 涉毒患者(新诗)
- 参保人员因患病来不及到指定的医疗机构就医,能否报销医疗费用()
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。