Sie sind auf Seite 1von 2

How to install Laravel 5.4?

I heard Laravel 5.4 will be unveiled


tomorrow.

How to install (Laravel 5.4) the Beta


version?

Do you know the new features?

laravel laravel-5.4

asked Jan 24 at 21:04


mySun
581 1 17

3 Answers

There are multiple ways to install Laravel. One of the simplest ways would be to install through
composer with the command: composer create-project --prefer-dist laravel/laravel
MyAppName .

All of the documentation for installing laravel 5.4 can be found here: https://laravel.com
/docs/5.4/installation

The new features are covered on laracasts and on the docs. Here is a link to some of the new
features: https://laracasts.com/series/whats-new-in-laravel-5-4

edited Jan 24 at 21:10 answered Jan 24 at 21:07


Denis Priebe
684 3 14

2 Laravel 5.4 is already released. manniL Jan 24 at 21:08

It's already been released as of 1/24/2017. Denis Priebe Jan 24 at 21:08

1. Install composer For windows, Click here to Download composer

For debain, Go to terminal, cd /usr/src

$ curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin


--filename=composer

Type composer --version in terminal.


For ubuntu just enter sudo apt-get install composer

If you are using Xampp then go to your htdocs and enter composer create-project
--prefer-dist laravel/laravel test-app

Your laravel framework will download with name test-app the version will be 5.4 .

Follow the documentation for the rest.

answered Jan 25 at 11:21


Comrade
688 4 20

1. Install composer from here: https://getcomposer.org


/download/
2. Make Sure Your Server meeting these requirements:
PHP >= 5.6.4
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
XML PHP Extension
3. Download Laravel Installer using this code:

composer global require "laravel/installer"

4. Create Laravel project using this code:

laravel new blog

edited Feb 23 at 12:30 answered Jan 24 at 21:28


Mahmoud Ali Kassem
31 5

Das könnte Ihnen auch gefallen