0% found this document useful (0 votes)
25 views3 pages

Lra Ravel

The Laravel framework has certain system requirements including PHP extensions and Composer. It is recommended to use the Laravel Homestead virtual machine which satisfies all requirements. Alternatively, requirements can be met by ensuring the server has the listed PHP extensions installed and Composer is used to manage Laravel's dependencies. Laravel can be installed via the Laravel installer which requires downloading Composer or using the Composer create-project command.

Uploaded by

Wedding School
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views3 pages

Lra Ravel

The Laravel framework has certain system requirements including PHP extensions and Composer. It is recommended to use the Laravel Homestead virtual machine which satisfies all requirements. Alternatively, requirements can be met by ensuring the server has the listed PHP extensions installed and Composer is used to manage Laravel's dependencies. Laravel can be installed via the Laravel installer which requires downloading Composer or using the Composer create-project command.

Uploaded by

Wedding School
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

The Laravel framework has a few system requirements.

All of these requirements are


satisfied by the Laravel Homestead virtual machine, so it's highly recommended that
you use Homestead as your local Laravel development environment.

However, if you are not using Homestead, you will need to make sure your server
meets the following requirements:

 PHP >= 7.2.5


 BCMath PHP Extension
 Ctype PHP Extension
 Fileinfo PHP extension
 JSON PHP Extension
 Mbstring PHP Extension
 OpenSSL PHP Extension
 PDO PHP Extension
 Tokenizer PHP Extension
 XML PHP Extension

Laravel utilizes Composer to manage its dependencies. So, before using Laravel, make
sure you have Composer installed on your machine.

Via Laravel Installer

First, download the Laravel installer using Composer:

composer global require laravel/installer

Make sure to place Composer's system-wide vendor bin directory in your $PATH so the
laravel executable can be located by your system. This directory exists in different
locations based on your operating system; however, some common locations include:
 macOS: $HOME/.composer/vendor/bin
 Windows: %USERPROFILE%\AppData\Roaming\Composer\vendor\bin

 GNU / Linux
Distributions: $HOME/.config/composer/vendor/bin or $HOME/.composer/vendor/bin

You could also find the composer's global installation path by running composer global
about and looking up from the first line.

Once installed, the laravel new command will create a fresh Laravel installation in the
directory you specify. For instance, laravel new blog will create a directory
named blog containing a fresh Laravel installation with all of Laravel's dependencies
already installed:

laravel new blog

Via Composer Create-Project

Alternatively, you may also install Laravel by issuing the Composer create-


project command in your terminal:

composer create-project --prefer-dist laravel/laravel blog

Local Development Server

If you have PHP installed locally and you would like to use PHP's built-in development
server to serve your application, you may use the serve Artisan command. This
command will start a development server at http://localhost:8000:

php artisan serve

Public Directory
After installing Laravel, you should configure your web server's document / web root to
be the public directory. The index.php in this directory serves as the front controller for
all HTTP requests entering your application.

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy