Search code examples
phplaravellaravel-4mamp

Installing Laravel on MAMP


I downloaded the latest version of Laravel from Github, unzipped it, and then placed it inside of the htdocs folder in MAMP. MAMP is running PHP version 5.4.10 and therefore fulfills Laravel's requirement of PHP >= 5.3.7. I tried using the terminal to install composer by entering:

curl -sS https://getcomposer.org/installer | php

And was greeted with an error reading:

 #!/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.

When I try to load

http://localhost:8888/laravel/public/

in my browser, the PHP error log shows

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

I have a feeling that this error has a fairly simple solution, but as I'm very new to Laravel I need to be pointed in the right direction in regards to solving this.

Thanks.


Solution

  • You need to get Composer up and running before you can install Laravel 4. That step failed here.

    Try running this command instead:

    $ curl -sS getcomposer.org/installer | php -d detect_unicode=Off
    

    It will circumvent the problem so you can get on with installing Laravel 4.

    EDIT:

    For a global installation of Composer, do this afterwards:

    $ sudo mv composer.phar /usr/local/bin/composer.phar
    $ alias composer='/usr/local/bin/composer.phar'
    

    Then, in your directory where you would like to put Laravel 4 into,

    $ php composer create-project laravel/laravel --prefer-dist