Home>Article>Development Tools> How to install (mac/linux) laravel with composer

How to install (mac/linux) laravel with composer

藏色散人
藏色散人 forward
2021-06-24 15:25:07 2200browse

How does composer install (mac/linux) laravel? The following is a detailed introduction from thecomposertutorial 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;"

    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

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

  4. Delete the composer-setup.php file:

    php -r "unlink('composer-setup.php');"
  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

    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
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
    备注:如果想要制定版本可以使用如下命令: composer create-project --prefer-dist laravel/laravel wxd "5.2.*"
  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:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete
Previous article:What is php composer usage? Next article:What is php composer usage?