開(kāi)發(fā) Composer 包詳細(xì)步驟

開(kāi)發(fā)一個(gè) composer 通用文件上傳包剥哑,發(fā)布到 Packagist笤妙,并在 Laravel 中測(cè)試诵盼。

image

一惜浅、GitHub 創(chuàng)建一個(gè)名 uploadfile 新倉(cāng)庫(kù),并克隆至本地。

$ git clone git@github.com:guanguans/uploadfile.git
$ cd uploadfile

二堡僻、初始化項(xiàng)目嫉晶,生成composer.json文件

2.1 步驟

yzm@Alert MINGW64 /i/phpstudy/WWW/uploadfile
$ composer init

  Welcome to the Composer config generator

This command will guide you through creating your composer.json config.

Package name (<vendor>/<name>) [yzm/try-make-package]: guanguans/uploadfile
Description []: 一個(gè)通用文件上傳包
Author [guanguans <53222411@qq.com>, n to skip]: guanguans <yzmguanguan@gmail.com>                                                                                 
Minimum Stability []: dev
Package Type (e.g. library, project, metapackage, composer-plugin) []: l                                                                                                    ibrary
License []: MIT

Define your dependencies.

Would you like to define your dependencies (require) interactively [yes]                                                                                                    ? yes
Search for a package: php
Enter the version constraint to require (or leave blank to use the lates                                                                                                    t version): >=5.4.0
Search for a package:
Would you like to define your dev dependencies (require-dev) interactive                                                                                                    ly [yes]? yes
Search for a package: php
Enter the version constraint to require (or leave blank to use the lates                                                                                                    t version): >=5.4.0
Search for a package:

{
    "name": "guanguans/uploadfile",
    "description": "一個(gè)通用文件上傳包",
    "type": "library",
    "require": {
        "php": ">=5.4"
    },
    "require-dev": {
        "php": ">=5.4"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "guanguans",
            "email": "yzmguanguan@gmail.com"
        }
    ],
    "minimum-stability": "dev"
}

Do you confirm generation [yes]? yes

2.2 步驟解釋

yzm@Alert MINGW64 /i/phpstudy/WWW/uploadfile
$ composer init

  Welcome to the Composer config generator

This command will guide you through creating your composer.json config.

// 1\. 輸入項(xiàng)目命名空間
// 注意<vendor>/<name> 必須要符合 [a-z0-9_.-]+/[a-z0-9_.-]+
Package name (<vendor>/<name>) [dell/htdocs]: yourname/projectname

// 2\. 項(xiàng)目描述
Description []: 這是一個(gè)測(cè)試

// 3\. 輸入作者信息天吓,可以直接回車
Author [guanguans <53222411@qq.com>, n to skip]:

// 4\. 輸入最低穩(wěn)定版本蘸际,stable, RC, beta, alpha, dev
Minimum Stability []: dev

// 5\. 輸入項(xiàng)目類型,
Package Type (e.g. library, project, metapackage, composer-plugin) []: library

// 6\. 輸入授權(quán)類型
License []:
> Define your dependencies.

// 7\. 輸入依賴信息
Would you like to define your dependencies (require) interactively [yes]?

// 如果需要依賴苍凛,則輸入要安裝的依賴
Search for a package: php

// 輸入版本號(hào)
Enter the version constraint to require (or leave blank to use the latest version): >=5.4.0

// 如需多個(gè)趣席,則重復(fù)以上兩個(gè)步驟

// 8\. 是否需要require-dev,
Would you like to define your dev dependencies (require-dev) interactively [yes]?

// 操作同上
{
    "name": "guanguans/uploadfile",
    "description": "一個(gè)通用文件上傳包",
    "type": "library",
    "require": {
        "php": ">=5.4"
    },
    "require-dev": {
        "php": ">=5.4"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "guanguans",
            "email": "yzmguanguan@gmail.com"
        }
    ],
    "minimum-stability": "dev"
}

// 9\. 是否生成composer.json
Do you confirm generation [yes]? yes

三醇蝴、添加自動(dòng)加載

在上一步生成的composer.json中追加

"autoload": {
    "psr-4": {
        "Guanguans\\": "src/"
    }
}

四宣肚、構(gòu)建項(xiàng)目

4.1 新建uploadfile/src/UploadFile.php

├─uploadfile                
│  ├─src                     
│  │  ├─UploadFile.php
│  └─composer.json

<?php
/**
 * 通用文件上傳類
 * @author  guanguans <yzmguanguan@gmail.com>
 */
namespace Guanguans;  // 注意命名空間與 composer.json 中的一致

class UploadFile
{
    private $config = [   
        'maxSize'           =>  -1,    // 上傳文件的最大值
        'supportMulti'      =>  true,    // 是否支持多文件上傳
        'allowExts'         =>  [],    // 允許上傳的文件后綴 留空不作后綴檢查
        'allowTypes'        =>  [],    // 允許上傳的文件類型 留空不做檢查
        'thumb'             =>  false,    // 使用對(duì)上傳圖片進(jìn)行縮略圖處理
        'imageClassPath'    =>  'ORG.Util.Image',    // 圖庫(kù)類包路徑
        'thumbMaxWidth'     =>  '',// 縮略圖最大寬度
        'thumbMaxHeight'    =>  '',// 縮略圖最大高度
        'thumbPrefix'       =>  'thumb_',// 縮略圖前綴
        'thumbSuffix'       =>  '',
        'thumbPath'         =>  '',// 縮略圖保存路徑
        'thumbFile'         =>  '',// 縮略圖文件名
        'thumbExt'          =>  '',// 縮略圖擴(kuò)展名
        'thumbRemoveOrigin' =>  false,// 是否移除原圖
        'thumbType'         =>  1, // 縮略圖生成方式 1 按設(shè)置大小截取 0 按原圖等比例縮略
        'zipImages'         =>  false,// 壓縮圖片文件上傳
        'autoSub'           =>  false,// 啟用子目錄保存文件
        'subType'           =>  'hash',// 子目錄創(chuàng)建方式 可以使用hash date custom
        'subDir'            =>  '', // 子目錄名稱 subType為custom方式后有效
        'dateFormat'        =>  'Ymd',
        'hashLevel'         =>  1, // hash的目錄層次
        'savePath'          =>  '',// 上傳文件保存路徑
        'autoCheck'         =>  true, // 是否自動(dòng)檢查附件
        'uploadReplace'     =>  false,// 存在同名是否覆蓋
        'saveRule'          =>  'uniqid',// 上傳文件命名規(guī)則
        'hashType'          =>  'md5_file',// 上傳文件Hash規(guī)則函數(shù)名
    ];

    // 錯(cuò)誤信息
    private $error = '';
    // 上傳成功的文件信息
    private $uploadFileInfo ;

    public function __get($name){
        if(isset($this->config[$name])) {
            return $this->config[$name];
        }
        return null;
    }

    public function __set($name,$value){
        if(isset($this->config[$name])) {
            $this->config[$name]    =   $value;
        }
    }

    public function __isset($name){
        return isset($this->config[$name]);
    }

    /**
     * 架構(gòu)函數(shù)
     * @access public
     * @param array $config  上傳參數(shù)
     */
    public function __construct($config=[]) {
        if(is_array($config)) {
            $this->config   =   array_merge($this->config,$config);
        }
    }

    /**
     * 上傳一個(gè)文件
     * @access public
     * @param mixed $name 數(shù)據(jù)
     * @param string $value  數(shù)據(jù)表名
     * @return string
     */
    private function save($file) {
        $filename = $file['savepath'].$file['savename'];
        if(!$this->uploadReplace && is_file($filename)) {
            // 不覆蓋同名文件
            $this->error    =   '文件已經(jīng)存在!'.$filename;
            return false;
        }
        // 如果是圖像文件 檢測(cè)文件格式
        if( in_array(strtolower($file['extension']), ['gif','jpg','jpeg','bmp','png','swf'])) {
            $info   = getimagesize($file['tmp_name']);
            if(false === $info || ('gif' == strtolower($file['extension']) && empty($info['bits']))){
                $this->error = '非法圖像文件';
                return false;
            }
        }
        if(!move_uploaded_file($file['tmp_name'], $this->autoCharset($filename,'utf-8','gbk'))) {
            $this->error = '文件上傳保存錯(cuò)誤悠栓!';
            return false;
        }
        if($this->thumb && in_array(strtolower($file['extension']), ['gif','jpg','jpeg','bmp','png'])) {
            $image =  getimagesize($filename);
            if(false !== $image) {
                //是圖像文件生成縮略圖
                $thumbWidth     =   explode(',',$this->thumbMaxWidth);
                $thumbHeight    =   explode(',',$this->thumbMaxHeight);
                $thumbPrefix    =   explode(',',$this->thumbPrefix);
                $thumbSuffix    =   explode(',',$this->thumbSuffix);
                $thumbFile      =   explode(',',$this->thumbFile);
                $thumbPath      =   $this->thumbPath?$this->thumbPath:dirname($filename).'/';
                $thumbExt       =   $this->thumbExt ? $this->thumbExt : $file['extension']; //自定義縮略圖擴(kuò)展名
                // 生成圖像縮略圖
                import($this->imageClassPath);
                for($i=0,$len=count($thumbWidth); $i<$len; $i++) {
                    if(!empty($thumbFile[$i])) {
                        $thumbname  =   $thumbFile[$i];
                    }else{
                        $prefix     =   isset($thumbPrefix[$i])?$thumbPrefix[$i]:$thumbPrefix[0];
                        $suffix     =   isset($thumbSuffix[$i])?$thumbSuffix[$i]:$thumbSuffix[0];
                        $thumbname  =   $prefix.basename($filename,'.'.$file['extension']).$suffix;
                    }
                    if(1 == $this->thumbType){
                        Image::thumb2($filename,$thumbPath.$thumbname.'.'.$thumbExt,'',$thumbWidth[$i],$thumbHeight[$i],true);
                    }else{
                        Image::thumb($filename,$thumbPath.$thumbname.'.'.$thumbExt,'',$thumbWidth[$i],$thumbHeight[$i],true);
                    }

                }
                if($this->thumbRemoveOrigin) {
                    // 生成縮略圖之后刪除原圖
                    unlink($filename);
                }
            }
        }
        if($this->zipImags) {
            // TODO 對(duì)圖片壓縮包在線解壓

        }
        return true;
    }

    /**
     * 上傳所有文件
     * @access public
     * @param string $savePath  上傳文件保存路徑
     * @return string
     */
    public function upload($savePath ='') {
        //如果不指定保存文件名霉涨,則由系統(tǒng)默認(rèn)
        if(empty($savePath))
            $savePath = $this->savePath;
        // 檢查上傳目錄
        if(!is_dir($savePath)) {
            // 檢查目錄是否編碼后的
            if(is_dir(base64_decode($savePath))) {
                $savePath   =   base64_decode($savePath);
            }else{
                // 嘗試創(chuàng)建目錄
                if(!mkdir($savePath)){
                    $this->error  =  '上傳目錄'.$savePath.'不存在';
                    return false;
                }
            }
        }else {
            if(!is_writeable($savePath)) {
                $this->error  =  '上傳目錄'.$savePath.'不可寫(xiě)';
                return false;
            }
        }
        $fileInfo   = [];
        $isUpload   = false;

        // 獲取上傳的文件信息
        // 對(duì)$_FILES數(shù)組信息處理
        $files   =   $this->dealFiles($_FILES);
        foreach($files as $key => $file) {
            //過(guò)濾無(wú)效的上傳
            if(!empty($file['name'])) {
                //登記上傳文件的擴(kuò)展信息
                if(!isset($file['key']))   $file['key']    =   $key;
                $file['extension']  =   $this->getExt($file['name']);
                $file['savepath']   =   $savePath;
                $file['savename']   =   $this->getSaveName($file);

                // 自動(dòng)檢查附件
                if($this->autoCheck) {
                    if(!$this->check($file))
                        return false;
                }

                //保存上傳文件
                if(!$this->save($file)) return false;
                if(function_exists($this->hashType)) {
                    $fun =  $this->hashType;
                    $file['hash']   =  $fun($this->autoCharset($file['savepath'].$file['savename'],'utf-8','gbk'));
                }
                //上傳成功后保存文件信息,供其他地方調(diào)用
                unset($file['tmp_name'],$file['error']);
                $fileInfo[] = $file;
                $isUpload   = true;
            }
        }
        if($isUpload) {
            $this->uploadFileInfo = $fileInfo;
            return true;
        }else {
            $this->error  =  '沒(méi)有選擇上傳文件';
            return false;
        }
    }

    /**
     * 上傳單個(gè)上傳字段中的文件 支持多附件
     * @access public
     * @param array $file  上傳文件信息
     * @param string $savePath  上傳文件保存路徑
     * @return string
     */
    public function uploadOne($file,$savePath=''){
        //如果不指定保存文件名惭适,則由系統(tǒng)默認(rèn)
        if(empty($savePath))
            $savePath = $this->savePath;
        // 檢查上傳目錄
        if(!is_dir($savePath)) {
            // 嘗試創(chuàng)建目錄
            if(!mkdir($savePath,0777,true)){
                $this->error  =  '上傳目錄'.$savePath.'不存在';
                return false;
            }
        }else {
            if(!is_writeable($savePath)) {
                $this->error  =  '上傳目錄'.$savePath.'不可寫(xiě)';
                return false;
            }
        }
        //過(guò)濾無(wú)效的上傳
        if(!empty($file['name'])) {
            $fileArray = [];
            if(is_array($file['name'])) {
               $keys = array_keys($file);
               $count    =   count($file['name']);
               for ($i=0; $i<$count; $i++) {
                   foreach ($keys as $key)
                       $fileArray[$i][$key] = $file[$key][$i];
               }
            }else{
                $fileArray[] =  $file;
            }
            $info =  [];
            foreach ($fileArray as $key=>$file){
                //登記上傳文件的擴(kuò)展信息
                $file['extension']  = $this->getExt($file['name']);
                $file['savepath']   = $savePath;
                $file['savename']   = $this->getSaveName($file);
                // 自動(dòng)檢查附件
                if($this->autoCheck) {
                    if(!$this->check($file))
                        return false;
                }
                //保存上傳文件
                if(!$this->save($file)) return false;
                if(function_exists($this->hashType)) {
                    $fun =  $this->hashType;
                    $file['hash']   =  $fun($this->autoCharset($file['savepath'].$file['savename'],'utf-8','gbk'));
                }
                unset($file['tmp_name'],$file['error']);
                $info[] = $file;
            }
            // 返回上傳的文件信息
            return $info;
        }else {
            $this->error  =  '沒(méi)有選擇上傳文件';
            return false;
        }
    }

    /**
     * 轉(zhuǎn)換上傳文件數(shù)組變量為正確的方式
     * @access private
     * @param array $files  上傳的文件變量
     * @return array
     */
    private function dealFiles($files) {
        $fileArray  = [];
        $n          = 0;
        foreach ($files as $key=>$file){
            if(is_array($file['name'])) {
                $keys       =   array_keys($file);
                $count      =   count($file['name']);
                for ($i=0; $i<$count; $i++) {
                    $fileArray[$n]['key'] = $key;
                    foreach ($keys as $_key){
                        $fileArray[$n][$_key] = $file[$_key][$i];
                    }
                    $n++;
                }
            }else{
               $fileArray[$key] = $file;
            }
        }
       return $fileArray;
    }

    /**
     * 獲取錯(cuò)誤代碼信息
     * @access public
     * @param string $errorNo  錯(cuò)誤號(hào)碼
     * @return void
     */
    protected function error($errorNo) {
         switch($errorNo) {
            case 1:
                $this->error = '上傳的文件超過(guò)了 php.ini 中 upload_max_filesize 選項(xiàng)限制的值';
                break;
            case 2:
                $this->error = '上傳文件的大小超過(guò)了 HTML 表單中 MAX_FILE_SIZE 選項(xiàng)指定的值';
                break;
            case 3:
                $this->error = '文件只有部分被上傳';
                break;
            case 4:
                $this->error = '沒(méi)有文件被上傳';
                break;
            case 6:
                $this->error = '找不到臨時(shí)文件夾';
                break;
            case 7:
                $this->error = '文件寫(xiě)入失敗';
                break;
            default:
                $this->error = '未知上傳錯(cuò)誤笙瑟!';
        }
        return ;
    }

    /**
     * 根據(jù)上傳文件命名規(guī)則取得保存文件名
     * @access private
     * @param string $filename 數(shù)據(jù)
     * @return string
     */
    private function getSaveName($filename) {
        $rule = $this->saveRule;
        if(empty($rule)) {//沒(méi)有定義命名規(guī)則,則保持文件名不變
            $saveName = $filename['name'];
        }else {
            if(function_exists($rule)) {
                //使用函數(shù)生成一個(gè)唯一文件標(biāo)識(shí)號(hào)
                $saveName = $rule().".".$filename['extension'];
            }else {
                //使用給定的文件名作為標(biāo)識(shí)號(hào)
                $saveName = $rule.".".$filename['extension'];
            }
        }
        if($this->autoSub) {
            // 使用子目錄保存文件
            $filename['savename'] = $saveName;
            $saveName = $this->getSubName($filename).$saveName;
        }
        return $saveName;
    }

    /**
     * 獲取子目錄的名稱
     * @access private
     * @param array $file  上傳的文件信息
     * @return string
     */
    private function getSubName($file) {
        switch($this->subType) {
            case 'custom':
                $dir    =   $this->subDir;
                break;
            case 'date':
                $dir    =   date($this->dateFormat,time()).'/';
                break;
            case 'hash':
            default:
                $name   =   md5($file['savename']);
                $dir    =   '';
                for($i=0;$i<$this->hashLevel;$i++) {
                    $dir   .=  $name{$i}.'/';
                }
                break;
        }
        if(!is_dir($file['savepath'].$dir)) {
            mkdir($file['savepath'].$dir,0777,true);
        }
        return $dir;
    }

    /**
     * 檢查上傳的文件
     * @access private
     * @param array $file 文件信息
     * @return boolean
     */
    private function check($file) {
        if($file['error']!== 0) {
            //文件上傳失敗
            //捕獲錯(cuò)誤代碼
            $this->error($file['error']);
            return false;
        }
        //文件上傳成功癞志,進(jìn)行自定義規(guī)則檢查
        //檢查文件大小
        if(!$this->checkSize($file['size'])) {
            $this->error = '上傳文件大小不符往枷!';
            return false;
        }

        //檢查文件Mime類型
        if(!$this->checkType($file['type'])) {
            $this->error = '上傳文件MIME類型不允許!';
            return false;
        }
        //檢查文件類型
        if(!$this->checkExt($file['extension'])) {
            $this->error ='上傳文件類型不允許';
            return false;
        }

        //檢查是否合法上傳
        if(!$this->checkUpload($file['tmp_name'])) {
            $this->error = '非法上傳文件今阳!';
            return false;
        }
        return true;
    }

    // 自動(dòng)轉(zhuǎn)換字符集 支持?jǐn)?shù)組轉(zhuǎn)換
    private function autoCharset($fContents, $from='gbk', $to='utf-8') {
        $from   = strtoupper($from) == 'UTF8' ? 'utf-8' : $from;
        $to     = strtoupper($to) == 'UTF8' ? 'utf-8' : $to;
        if (strtoupper($from) === strtoupper($to) || empty($fContents) || (is_scalar($fContents) && !is_string($fContents))) {
            //如果編碼相同或者非字符串標(biāo)量則不轉(zhuǎn)換
            return $fContents;
        }
        if (function_exists('mb_convert_encoding')) {
            return mb_convert_encoding($fContents, $to, $from);
        } elseif (function_exists('iconv')) {
            return iconv($from, $to, $fContents);
        } else {
            return $fContents;
        }
    }

    /**
     * 檢查上傳的文件類型是否合法
     * @access private
     * @param string $type 數(shù)據(jù)
     * @return boolean
     */
    private function checkType($type) {
        if(!empty($this->allowTypes))
            return in_array(strtolower($type),$this->allowTypes);
        return true;
    }

    /**
     * 檢查上傳的文件后綴是否合法
     * @access private
     * @param string $ext 后綴名
     * @return boolean
     */
    private function checkExt($ext) {
        if(!empty($this->allowExts))
            return in_array(strtolower($ext),$this->allowExts,true);
        return true;
    }

    /**
     * 檢查文件大小是否合法
     * @access private
     * @param integer $size 數(shù)據(jù)
     * @return boolean
     */
    private function checkSize($size) {
        return !($size > $this->maxSize) || (-1 == $this->maxSize);
    }

    /**
     * 檢查文件是否非法提交
     * @access private
     * @param string $filename 文件名
     * @return boolean
     */
    private function checkUpload($filename) {
        return is_uploaded_file($filename);
    }

    /**
     * 取得上傳文件的后綴
     * @access private
     * @param string $filename 文件名
     * @return boolean
     */
    private function getExt($filename) {
        $pathinfo = pathinfo($filename);
        return $pathinfo['extension'];
    }

    /**
     * 取得上傳文件的信息
     * @access public
     * @return array
     */
    public function getUploadFileInfo() {
        return $this->uploadFileInfo;
    }

    /**
     * 取得最后一次錯(cuò)誤信息
     * @access public
     * @return string
     */
    public function getErrorMsg() {
        return $this->error;
    }
}

4.2 測(cè)試

4.2.1 終端下執(zhí)行 composer install师溅,這時(shí)會(huì)生成vendor目錄,及其他文件

yzm@Alert MINGW64 /i/phpstudy/WWW/uploadfile
$ composer install

4.2.2 新建uploadfile/test/UpploadFileTest.php盾舌、uploadfile/test/UpploadFile.html

  • UpploadFileTest.php
<?php

require_once '../vendor/autoload.php';

use Guanguans\UploadFile;

$upload = new UploadFile();
$upload->maxSize       = 1*1024*1024;    // 默認(rèn)為-1,不限制上傳大小
$upload->savePath      = './upload/';    // 上傳根目錄
$upload->saveRule      = 'uniqid';       // 上傳文件的文件名保存規(guī)則
$upload->uploadReplace = true;           // 如果存在同名文件是否進(jìn)行覆蓋
$upload->autoSub       = true;           // 上傳子目錄開(kāi)啟
$upload->subType       = 'date';         // 上傳子目錄命名規(guī)則
$upload->allowExts     = ['jpg', 'png']; // 允許類型

if ($upload->upload()) {
    var_dump($upload->getUploadFileInfo());
} else {
    var_dump($upload->getErrorMsg());
}

  • UpploadFile.html
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>uploadfile test</title>
    <link  rel="stylesheet">
</head>
<body>
    <form action="UpploadfileTest.php" method="post" enctype="multipart/form-data">
        <div class="form-group">
            <label>單文件上傳</label>
            <input type="file" name="uploadfile">
        </div>
        <button type="submit" class="btn btn-primary">Submit</button>
    </form>
    <hr>
    <form action="UpploadfileTest.php" method="post" enctype="multipart/form-data">
        <div class="form-group">
            <label>多文件上傳</label>
            <input type="file" name="uploadfile[]">
            <input type="file" name="uploadfile[]">
        </div>
        <button type="submit" class="btn btn-primary">Submit</button>
    </form>
</body>
</html>

4.2.3 本地瀏覽器訪問(wèn)uploadfile/test/UpploadFile.html進(jìn)行測(cè)試

image

五蘸鲸、添加 README.md妖谴、LICENSE.gitignore等文件,項(xiàng)目最終結(jié)構(gòu)如下:我的包GitHub地址

├─uploadfile                擴(kuò)展包根目錄
│  ├─src                    擴(kuò)展包代碼目錄
│  │  ├─UploadFile.php
│  ├─test                   測(cè)試目錄
│  │  ├─uploadfile.html
│  │  ├─UpploadfileTest.php
│  ├─.gitignore
│  ├─composer.json
│  ├─LICENSE
│  └─README.md

六膝舅、推送到 GitHub

git add .
git commit -m 'init'
git tag v1.0.0 // 記住打一個(gè)版本號(hào)
git push origin master
git push v1.0.0

七嗡载、將 GitHub 上的包提交到 Packagist

  1. 首先要在 Packagist 上注冊(cè)賬號(hào)并登錄(可以用 GitHub 直接登錄)
  2. 點(diǎn)擊頂部導(dǎo)航條中的 Summit 按鈕
  3. 在輸入框中輸入 GitHub 上的剛才包地址,如:https://github.com/guanguans/uploadfile
  4. 然后點(diǎn)擊 Check 按鈕 Packagist 會(huì)去檢測(cè)此倉(cāng)庫(kù)地址的代碼是否符合 Composer 的 Package 包的要求
    檢測(cè)正常的話仍稀,會(huì)出現(xiàn) Submit 按鈕洼滚,再點(diǎn)擊一下 Submit 按鈕,我們的包就提交到 Packagist 上了
image
image

八技潘、設(shè)置 composer 包自動(dòng)更新

上面提交上的包提交的包遥巴,當(dāng)我們更新 GitHub 倉(cāng)庫(kù)時(shí),Packagist 上面的的包并不會(huì)自動(dòng)更新享幽,現(xiàn)在我們來(lái)設(shè)置一下自動(dòng)更新

8.1 復(fù)制 Profile API Token

image

8.2 打開(kāi) GitHub 項(xiàng)目 setting铲掐,選擇 Integrations & services,添加 packagist service值桩,點(diǎn)擊 Test service

image
image
image
image
image

8.3 驗(yàn)證是否已經(jīng)自動(dòng)更新

移步 Packagist 包主頁(yè)摆霉,發(fā)現(xiàn)已經(jīng)沒(méi)有了紅色的圈住的提示,說(shuō)明設(shè)置自動(dòng)更新成功奔坟。

image

九携栋、項(xiàng)目中使用

我以 Laravel 中使用舉例

composer create-project laravel/laravel
cd laravel
composer require guanguans/uploadfile

image

其他

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市咳秉,隨后出現(xiàn)的幾起案子婉支,更是在濱河造成了極大的恐慌,老刑警劉巖滴某,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件磅摹,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡霎奢,警方通過(guò)查閱死者的電腦和手機(jī)户誓,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)幕侠,“玉大人帝美,你說(shuō)我怎么就攤上這事∥钏叮” “怎么了悼潭?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)舞箍。 經(jīng)常有香客問(wèn)我舰褪,道長(zhǎng),這世上最難降的妖魔是什么疏橄? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任占拍,我火速辦了婚禮略就,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘晃酒。我一直安慰自己表牢,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布贝次。 她就那樣靜靜地躺著崔兴,像睡著了一般。 火紅的嫁衣襯著肌膚如雪蛔翅。 梳的紋絲不亂的頭發(fā)上敲茄,一...
    開(kāi)封第一講書(shū)人閱讀 49,772評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音搁宾,去河邊找鬼折汞。 笑死,一個(gè)胖子當(dāng)著我的面吹牛盖腿,可吹牛的內(nèi)容都是我干的爽待。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼翩腐,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼鸟款!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起茂卦,我...
    開(kāi)封第一講書(shū)人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤何什,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后等龙,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體处渣,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年蛛砰,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了罐栈。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡泥畅,死狀恐怖荠诬,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情位仁,我是刑警寧澤柑贞,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站聂抢,受9級(jí)特大地震影響钧嘶,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜琳疏,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一康辑、第九天 我趴在偏房一處隱蔽的房頂上張望摄欲。 院中可真熱鬧轿亮,春花似錦疮薇、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至但骨,卻和暖如春励七,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背奔缠。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工掠抬, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人校哎。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓两波,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親闷哆。 傳聞我的和親對(duì)象是個(gè)殘疾皇子腰奋,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容