composer Package 引用方式

1.创建方法1

①创建new file

②在new file里面创建一个新的composer.json;

③在composer.json里面编写

{
'require':{
  "mustache/mustache":"^2.12" 
 //第一个引号内为包名 例如mustache ;
 //第二个为版本号,尖号为最新版本解释  
}
}

④回到终端当前文件夹输入composer install;
⑤回到ide中,会发现生成成功一个vendor目录里面有我们需要的autoload.php;
⑥我们可以试验一下,生成一个新的php file 例如 index.php
生成一个"hellow world"

render('Hellow{{ name }}', ['name'=>'world']); //输出

⑦最后回到终端执行php index.php;

2.创建方法2

①创建一个composer.json文件,部署

{
'require:'{         }
}

②打开chrome进入https://packagist.org,搜索我们想要的package;
③打开具体包页面,复制行命令如composer require mustache/mustache
④包导入成功,运行 php index.php

HppyHacking!!!

你可能感兴趣的:(composer Package 引用方式)