Can I Install Laravel without using Composer?

后端 未结 7 2480
渐次进展
渐次进展 2020-12-04 10:12

I\'d like to know if I can install or use the Laravel PHP framework on any web server without using Composer (PHP package/dependency manager) every time?

I would lik

7条回答
  •  失恋的感觉
    2020-12-04 10:37

    If you don't want to use composer on server then you will have to run composer install/update and download all the libraries locally and then manually upload all those files on the server i.e. Vendor Directory.

    In-Case of shared hosting where you can't connect to server with shh there you might have to do that but it will take lot of time to upload all the files on server so I would recommend that you should composer and then download the libraries through composer install/update.

提交回复
热议问题