Install Laravel using Composer

后端 未结 7 2063
孤独总比滥情好
孤独总比滥情好 2020-12-17 05:45

I\'m trying to install Laravel using Composer, but after running the following command

composer create-project laravel/laravel cmsLaravel 5.2
         


        
7条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-17 06:11

    composer create-project laravel/laravel 6.0

    composer is a tool for dependency management in PHP

    create-project is command to create a new laravel project

    laravel/laravel is for the skeleton application you get when creating a new project. It provides a default structure that's recommended (you're not forced to use it). The repository contains default config files, controllers, routes, etc. As well as code responsible for bootstrapping the application.

    Link Laravel/laravel

    6.0 Version in laravel

提交回复
热议问题