我从 Github 下载了最新版本的 Laravel,将其解压缩,然后将其放在 MAMP 的 htdocs 文件夹中。MAMP 运行 PHP 版本 5.4.10,因此满足 Laravel 对 PHP >= 5.3.7 的要求。我尝试通过输入以下命令使用终端安装作曲家:
curl -sS https://getcomposer.org/installer | php
并收到错误阅读:
#!/usr/bin/env php
Some settings on your machine make Composer unable to work properly.
Make sure that you fix the issues listed below and run this script again:
The detect_unicode setting must be disabled.
Add the following to the end of your `php.ini`:
detect_unicode = Off
A php.ini file does not exist. You will have to create one.
If you can not modify the ini file, you can also run `php -d option=value` to modify ini values on the fly. You can use -d multiple times.
当我尝试加载
http://localhost:8888/laravel/public/
在我的浏览器中,PHP 错误日志显示
05-Sep-2013 16:57:03 Europe/Berlin] PHP Fatal error: require(): Failed opening required '/Applications/MAMP/htdocs/laravel/bootstrap/../vendor/autoload.php' (include_path='.:/Applications/MAMP/bin/php/php5.4.10/lib/php') in /Applications/MAMP/htdocs/laravel/bootstrap/autoload.php on line 17
我觉得这个错误有一个相当简单的解决方案,但由于我对 Laravel 很陌生,我需要指出解决这个问题的正确方向。
谢谢。