简体   繁体   中英

How add Artisan cli to existing laravel project?

I have issue with Artisan usage on Windows 10 with Xampp.

What have I done:

  1. clone project from git repositiory
  2. run composer install

In directory with project i trying run:

php artisan

but i get errror:

Could not open input file: artisan

But if i run command

php bin/console i get list of command like cache, debug, eloquent... so some tools are there... But none artisan...

How i can add/use artisan into existing project?

Check if artisan file exists in your project root folder. If it does, then you're probably on the wrong folder. If it doesn't exist, you can just download it from the official repo .

To configure an existing project, you'd typically check those things first:

You should goto app/config/database.php check file and verify username and password.

After check in Project Folder vendor folder and composer.json file exist then remove it (that remove old configuration now we going to fresh configuration).

Then after back to command prompt and fire command composer update and that download some dependent file download.

Now Run php artisan serve

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM