How to install Laravel's Artisan?

前端 未结 5 1806
春和景丽
春和景丽 2021-01-30 10:06

I want to create migrations in Laravel but according to the tutorials I need the Artisan CLI. The php command works fine and I\'m on Windows. I type in php ar

5条回答
  •  死守一世寂寞
    2021-01-30 10:36

    Use the project's root folder

    Artisan comes with Laravel by default, if your php command works fine, then the only thing you need to do is to navigate to the project's root folder. The root folder is the parent folder of the app folder. For example:

    cd c:\Program Files\xampp\htdocs\your-project-name
    

    Now the php artisan list command should work fine, because PHP runs the file called artisan in the project's folder.

    Install the framework

    Keep in mind that Artisan runs scripts stored in the vendor folder, so if you installed Laravel without Composer, like downloading and extracting the Laravel GitHub repo, then you don't have the framework itself and you may get the following error when you try to use Artisan:

    Could not open input file: artisan

    To solve this you have to install the framework itself by running composer install in your project's root folder.

提交回复
热议问题