composer我我认为是php里面一个比较特别的东西,比如我们php安装扩展模块什么的都是编译一个.so文件,然后再加载到php里面,而laravel 用了一个叫Composer的东西来解决依赖问题。
很简单下载下来放到环境变量里面就行了
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
用composer创建laravel项目
# composer create-project laravel/laravel test
...
...
# cd test
# composer install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Nothing to install or update
Generating autoload files
Generating optimized class loader
有点类似于python 里面的pip install的意思。用起来也很方便。
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文:http://blog.csdn.net/aca_jingru/article/details/46808477