Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install Laravel 5.0

I'm having trouble getting a test instance of Laravel 5.0 up and running so I can assist with this transition.

1) Creating a new app from https://github.com/laravel/laravel/tree/develop leads to the following error when running composer install.

{"error":     {"type":"ErrorException",      "message":"Undefined index: timezone",      "file":"\/Projects\/indatus\/dispatcher-test-app\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/start.php",      "line":167} } {"error":     {"type":"ErrorException",      "message":"Undefined index: timezone",      "file":"\/Projects\/indatus\/dispatcher-test-app\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/start.php",      "line":167}} 

Am I completely missing something?

UPDATE: This question/answer was only relevant when Laravel 5 was in the development stage. You should now reference the Laravel Documentation for how to install Laravel

like image 608
Webnet Avatar asked Sep 20 '14 12:09

Webnet


People also ask

Which PHP version is required for Laravel 5?

Server Requirements The Laravel framework has a few system requirements: PHP >= 5.4, PHP < 7. Mcrypt PHP Extension.

Does Laravel 8 require PHP 8?

Laravel 8 requires PHP 7.3+ or above so you need this version or the latest version of PHP installed on your system.

How install Laravel globally in Windows?

Via Download. Once Composer is installed, download the 4.2 version of the Laravel framework and extract its contents into a directory on your server. Next, in the root of your Laravel application, run the php composer. phar install (or composer install ) command to install all of the framework's dependencies.


2 Answers

As Laravel 5 is already final release, to install it, you should run

composer create-project laravel/laravel test-laravel-5-project --prefer-dist  

in your console. test-laravel-5-project is the name of your project you can call it anyway you want - for example myblog, myapp etc. Laravel files will be put inside this directory

You can also use alternative method using

composer global require "laravel/installer=~1.1" 

and then running

laravel new test-laravel-5-project  

For detailed info you should look at official Laravel installation notes


The below answer is being kept only for historical reasons and it was valid when Laravel 5 still was in its development stages. You should now only use the method mentioned above

I've just tested this and there are two ways of installing Laravel 5:

One-step method

You just run:

composer create-project laravel/laravel test-laravel-5-project dev-develop --prefer-dist 

and composer will create the whole directory structure. In above command test-laravel-5-project is your project name - you can of course name it as you want (composer will create directory with this name and put all Laravel5 files inside this directory)

Multi-step method

  1. Download https://github.com/laravel/laravel/tree/develop with option Download ZIP
  2. Unpack it in web directory
  3. Run composer update (not composer install) in directory where you unpacked your ZIP file

Using both methods when you run URL for your project in the browser (for example http://localhost/projects/test-laravel-5-project/public depending on your webserver settings ) you will get standard Laravel website You have arrived.

Both methods should work well. Give either one a try, whichever works best for you.

like image 93
Marcin Nabiałek Avatar answered Sep 21 '22 02:09

Marcin Nabiałek


Go to CLI and enter following command line. make sure composer is already installed.

$composer create-project laravel/laravel <yourdirectryname> dev-develop It will ask you a question about removing .git files enter Y then. change the directory to

$cd <yourdirectoryname> then enter following command

$ php artisan -V

you will be able to see following message.

Laravel Framework version 5.0-dev means you have installed laravel 5 successfully!

like image 34
Rikin Adhyapak Avatar answered Sep 17 '22 02:09

Rikin Adhyapak