溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

centos7使用composer

發(fā)布時(shí)間:2020-07-19 03:35:13 來源:網(wǎng)絡(luò) 閱讀:732 作者:Lee_吉 欄目:web開發(fā)

一、安裝及使用:

  1. 下載:
    git  clone  https://github.com/dollarphper/composer.git
    mv  composer/linux/composer  /usr/bin/
    chmod  +x  /usr/bin/composer
  2. 配置鏡像:
    composer  config  -g  repo.packagist  composer  https://packagist.phpcomposer.com
  3. 刪除鏡像:
    composer  config  -g  --unset  repos.packagist
  4. 安裝包:
    composer  require  dollarphp/dollarphp
  5. 使用包:
    require  "vendor/autoload.php";
  6. 更新:
    composer  update
  7. 刪除:
    composer  remove  dollarphp/dollarphp
  8. 搭建框架(直接下載源碼):
    composer  create-project  dollarphp/dollarphp

    二、發(fā)布包:

  9. 創(chuàng)建github倉庫:
    centos7使用composer
  10. 初始化composer.json文件:
    composer  init

    centos7使用composer

  11. 推送代碼到github:
    centos7使用composer
  12. 發(fā)布版本:
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
  13. 發(fā)布到packagist:
    centos7使用composer
    centos7使用composer
    centos7使用composer
  14. 設(shè)置自動更新:
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
    centos7使用composer
  15. 測試:
    centos7使用composer
    centos7使用composer
    centos7使用composer

    三、常用包:

    用途                                包名                                安裝
    簡單路由類                     dollarphp/dollarphp        composer  require  dollarphp/dollarphp
    數(shù)據(jù)庫操作                     catfan/medoo                 composer  require  catfan/medoo
    圖片處理                         dollarphp/dollarphp         composer  require  dollarphp/dollarphp
    郵件發(fā)送                         phpmailer/phpmailer      composer  require  phpmailer/phpmailer
    excel操作類                    phpoffice/phpexcel         composer  require  phpoffice/phpexcel
    word操作類                     phpoffice/phpword         composer  require  phpoffice/phpword
    HTTP請求類                   guzzlehttp/guzzle           composer  require  guzzlehttp/guzzle
    長連接類(命令行)       workerman/workerman  composer  require  workerman/workerman
    圖片識別(OCR)          thiagoalessio/tesseract_ocr 1.3.0   composer  require  thiagoalessio/tesseract_ocr 1.3.0
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI