下面由composer使用教學欄位來介紹如何在Packagist自己的Composer包,希望對需要的朋友有幫助!
名詞解釋:
#
簡單說明:想要將項目發佈到packagist上,需要先將專案發佈到github上(當然不只此一種選擇),之後再登陸packagist發布。
可以這麼理解Packagist是索引,Github是內容提供者
步驟:
一、環境需求(都官網下載):git、 composer、php,
二、開始packagist
登入https://packagist.org/ 點擊上角的submit提交git倉庫的位址
新增GitHub Service Hook domain 指向packagist的位址,實現自動更新(github有變化的時候,packagist跟著更新)。
其中的add packpackagist如下:User為Packagist用戶名token為Packagist中的ApiToken,設定完成之後可以test 是否成功
#
三、使用擴充包
composer require xxxx/xxx # 这时候会报错, Could not find package xxxx/xxx at any version for your minimum-stability (stable). Check the package。。。猜测是我的composer使用的国内镜像,可能是没有同步的原因,使用这个命令把“源”改回去还是不行。 composer config repo.packagist composer https://packagist.org # 继续猜测,原来我的组件还没有在github上发布正式,这个时候还是开发版本dev-master.应该加上dev-master版本。 composer require xxxx/xxx:dev-master # 成功
#因為眾所周知的原因,連程式碼倉庫也要被牆,等幾個小時再試試看吧,然後自己對這方面的知識實在是太差了,fighting~
更多composer相關技術文章,請訪問composer專欄:https://www.php.cn/tool/composer/
以上是在Packagist發布自己的Composer包的詳細內容。更多資訊請關注PHP中文網其他相關文章!