netbeans composer
netbeans composer
简介
Composer 是PHP中的一个依赖管理工具 类似 centos的yum工具
下载
初始化
composer.josn
{ "name": "vendor/test", "description": null, "authors": [ { "name": "baixinxing", "email": "[email protected]" } ], "require": { } }
测试
安装smarty做测试
1、搜索smarty
方法1:https://packagist.org/ 下搜索smarty
方法2:https://github.com/ 下搜索smarty
在我们的composer.json引用 smarty
安装
可能会出现如下错误(描述为空) null自己随便写点什么 记住是双引号 “”
安装完成
新建index.php<?php include ‘./vendor/autoload.php‘; $smarty = new Smarty(); var_dump($smarty);
剩下的就是根据自己项目 配置和使用smarty了
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。