Table of Contents
1. Introduction
2. Command line installation of composer
Home Development Tools composer How to install (mac/linux) laravel with composer

How to install (mac/linux) laravel with composer

Jun 24, 2021 pm 03:25 PM
composer laravel

How does composer install (mac/linux) laravel? The following is a detailed introduction from the composer tutorial column~

1. Introduction

  1. composer is used for management by PHP Dependency tools. You can declare the external libraries (libraries) you depend on in your project, and composer will install these dependent library files for you.
  2. composer official website address is: https://getcomposer.org/
  3. composer official website download and installation address: https://getcomposer.org/downl...
  4. Installation There are two ways, one is to download the composer.phar file directly from the official website and install it; the other is to download and install it directly through the command line. Here we mainly introduce the command line installation~

2. Command line installation of composer

  1. Use the php -r command to execute a piece of php code to download the composer-setup.php file
    php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"

    Remarks: Execute the above command Afterwards, you will find that there is a composer-setup.php file in the current directory
    How to install (mac/linux) laravel with composer

  2. Verification, execute the following command:

    php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
    Copy after login

    Note: If the verification passes after executing the above command, Installer verified will be outputHow to install (mac/linux) laravel with composer

  3. ##The php file downloaded by executing the above steps

    php composer-setup.php
    Copy after login

    Remarks: A composer.phar file will be generated directly after execution How to install (mac/linux) laravel with composer

  4. Delete the composer-setup.php file:

    php -r "unlink('composer-setup.php');"
    Copy after login
  5. composer.phar in Linux is an executable program. For example, we can use php composer.phar update to perform update operations. At this point, our composer tool is completely installed. You can use it to install various dependent library files of PHP~
  6. If you want to use composer globally to install dependent libraries, you can execute the following command Global installation:

    mv composer.phar /usr/local/bin/composer
    Copy after login

    Note: After that, you can directly use composer install to install various packages and dependencies. However, usually you only need to add the location of composer.phar to PATH, and it does not have to be installed globally.

3. For installation in other environments, please refer to:

http://www.thinkphp.cn/topic/...

http://laravelacademy. org/pos...

4. Domestic image configuration

Because composer loads foreign images by default, due to the existence of the "wall" in China, errors will occur when loading foreign images, so configuration is required Domestic mirroring.

To configure the domestic image, execute the following command:

composer config -g repo.packagist composer https://packagist.phpcomposer.com
Copy after login
5. Use composer to install Laravel

    The first four major steps are to basically install and configure composer successfully, and then proceed Use the composer tool to install the Laravel framework
  1. Create your own laravel project in your own site directory, for example, name it wxd, and execute the following command:

    composer create-project --prefer-dist laravel/laravel wxd
    Copy after login
    备注:如果想要制定版本可以使用如下命令:
    composer create-project --prefer-dist laravel/laravel wxd "5.2.*"
    Copy after login
  2. After executing the command, wait for a while for the installation to be successful:

  3. How to install (mac/linux) laravel with composer
  4. After the installation is successful, enter the project and you can see the various directories of the framework, including composer.json:

  5. How to install (mac/linux) laravel with composer

The above is the detailed content of How to install (mac/linux) laravel with composer. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Composer's advanced features: aliases, scripts, and conflict resolution Composer's advanced features: aliases, scripts, and conflict resolution Jun 03, 2024 pm 12:37 PM

Composer provides advanced features, including: 1. Aliases: define convenient names for packages for repeated reference; 2. Scripts: execute custom commands when installing/updating packages, used to create database tables or compile resources; 3. Conflict resolution: use priorities Rules, satisfaction constraints, and package aliases resolve the different requirements of multiple packages for the same dependency version to avoid installation conflicts.

Comparison of the latest versions of Laravel and CodeIgniter Comparison of the latest versions of Laravel and CodeIgniter Jun 05, 2024 pm 05:29 PM

The latest versions of Laravel 9 and CodeIgniter 4 provide updated features and improvements. Laravel9 adopts MVC architecture and provides functions such as database migration, authentication and template engine. CodeIgniter4 uses HMVC architecture to provide routing, ORM and caching. In terms of performance, Laravel9's service provider-based design pattern and CodeIgniter4's lightweight framework give it excellent performance. In practical applications, Laravel9 is suitable for complex projects that require flexibility and powerful functions, while CodeIgniter4 is suitable for rapid development and small applications.

Laravel - Artisan Commands Laravel - Artisan Commands Aug 27, 2024 am 10:51 AM

Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?

Which one is more beginner-friendly, Laravel or CodeIgniter? Which one is more beginner-friendly, Laravel or CodeIgniter? Jun 05, 2024 pm 07:50 PM

For beginners, CodeIgniter has a gentler learning curve and fewer features, but covers basic needs. Laravel offers a wider feature set but has a slightly steeper learning curve. In terms of performance, both Laravel and CodeIgniter perform well. Laravel has more extensive documentation and active community support, while CodeIgniter is simpler, lightweight, and has strong security features. In the practical case of building a blogging application, Laravel's EloquentORM simplifies data manipulation, while CodeIgniter requires more manual configuration.

Laravel vs CodeIgniter: Which framework is better for large projects? Laravel vs CodeIgniter: Which framework is better for large projects? Jun 04, 2024 am 09:09 AM

When choosing a framework for large projects, Laravel and CodeIgniter each have their own advantages. Laravel is designed for enterprise-level applications, offering modular design, dependency injection, and a powerful feature set. CodeIgniter is a lightweight framework more suitable for small to medium-sized projects, emphasizing speed and ease of use. For large projects with complex requirements and a large number of users, Laravel's power and scalability are more suitable. For simple projects or situations with limited resources, CodeIgniter's lightweight and rapid development capabilities are more ideal.

Laravel vs CodeIgniter: Which framework is better for small projects? Laravel vs CodeIgniter: Which framework is better for small projects? Jun 04, 2024 pm 05:29 PM

For small projects, Laravel is suitable for larger projects that require strong functionality and security. CodeIgniter is suitable for very small projects that require lightweight and ease of use.

How does Composer handle the composer.lock file? How does Composer handle the composer.lock file? Jun 03, 2024 pm 04:40 PM

Composer manages dependencies by using the composer.lock file, which records all installed dependencies and their exact versions, making it: Ensure consistency and avoid version conflicts. Improve performance without having to search for packages repeatedly. Track changes, recording installed dependency versions after each install command.

Which is the better template engine, Laravel or CodeIgniter? Which is the better template engine, Laravel or CodeIgniter? Jun 03, 2024 am 11:30 AM

Comparing Laravel's Blade and CodeIgniter's Twig template engine, choose based on project needs and personal preferences: Blade is based on MVC syntax, which encourages good code organization and template inheritance. Twig is a third-party library that provides flexible syntax, powerful filters, extended support, and security sandboxing.

See all articles