php中Composer 安装与使用教程
Composer是PHP中用来管理依赖(dependency)关系的工具,你可以在自己的项目中声明所依赖的外部工具库(libraries),Composer会帮你安装这些依赖的库文件,下面我们一起来看composer安装方法.
下午在安装 Laravel 框架过程中,遇到了不少问题,因为 Laravel 的安装依赖于 composer,这里就先介绍一下 composer 的安装方法.
安装方法,代码如下:
#下载 sudo curl -sS https://getcomposer.org/installer | sudo php -d detect_unicode=Off #更改文件权限 sudo chmod a+x composer.phar #移动文件 sudo chmod a+x composer.phar #更新 sudo composer self-update这样就可以使用 composer 了。 [root@localhost www.phprm.com]# composer Zend Guard Loader requires Zend Engine API version 220090626. The Zend Engine API version 220121212 which is installed, is newer. Contact Zend Technologies at http://www.zend.com/ for a later version of Zend Guard Loader.phprm.com Composer version aa9c257f0efd1a54c93ba95282821a497bc15d75 2014-03-09 15:09:15 Usage: [options] command [arguments] Options: --help -h Display this help message.
文章网址:http://www.phprm.com/install/fs4773.html
随意转载^^但请附上教程地址。