Follow the instructions here in your cmd window: http://lumen.laravel.com/docs/installation
How to install on Xampp [windows 8]
What are the steps to install lumen onto a windows 8 computer that has web services set up using XAMPP?
I have composer installed as well as lumen-installer, but I do not know how to get them to install an instance of lumen to a specific folder where I can host my web project.
THansk for the help.
So here are the steps to successfully install lumen on XAMPP for windows 8.
- Download and run Composer-Setup.exe - it will install the latest composer version whenever it is executed. https://getcomposer.org/Composer-Setup.exe
- Install git from github, find it on the website: https://github.com
- Create a github account
- Get an OAuth TOKEN because the install files will exceed default limits, at https://github.com/settings/profile
- Click Personal access tokens link
- Click Generate new token link
- Copy token to clipboard
- Locate the composer.json file on your computer to locate the composer folder
- Create a new file named auth.json and paste the github TOKEN into this file. Make sure the TOKEN string is surrounded by double quotes.
- Press Windowskey + X to open start menu and click 'Run'
- type cmd and press enter
- Change directory to your folder containing composer, from #8 above
- type composer create-project laravel/lumen [path\to\your\project\folder] --prefer-dist to install lumen onto your computer
UPDATE
- type composer update in the cmd shell, because composer create-project does not load the most recent version
It should all load automatically. If not make sure you have php installed and you may have to reboot your computer after installing composer. Hard to remember 'cause I got a new puppy and have been sleep deprived for the last three weeks.
Anyway thanks to @WayneLuke for reaching out to help and your avatar looks like my puppy.
Best wishes to all.
Please or to participate in this conversation.