Composer update wamp windows 7 - composer-php

I am trying to update my composer it showing could not input file: C:\wamp\bin\php\php5.5.12\composer.phar.
enter image description here
I tried stuff which I got from google

Related

Laravel giving error "Your lock file does not contain a compatible set of packages. Please run composer update"

I am trying to host my application using Microsoft Azure. When I build my laravel web to Azure web app, the error I get is "Your lock file does not contain a compatible set of packages. Please run composer update". I have run the command "composer update" but still get the same error.
enter image description here
Does anyone know how to solve this?
You have the solution on your screenshot - enable php extension ext-fileinfo. How? Check documentation
Or, for just test deploy - add flag to install command
composer install --ignore-platform-reqs

Laravel Installation On Windows by using Composer

I am trying to setup Laravel using Composer through my command prompt but I am getting some errors.
I have already installed Composer and Xampp(php/mysql/apache) but I am still unable to install it. I have followed the exact instructions provide by the Laravel and followed other resources but I am still getting error.

Composer installation

I updated a lower version of my local server to the required one while installing composer but I get this error enter image description here
From your screenshot, looks like Windows doesn't recognize php.
Try adding php to your PATH variable.
Check this link

how to solve errorexception in composer using installing laravel

I try to install laravel using composer but i facing to below error .
I am using xampp server in d: and
New file dir is : d:xampp/htdocs/laraveltest
click for error image
Type composer in cmd and i get result

Run laravel project files on wamp server without laravel and composer install

I'm currently new in laravel, I have laravel project files and I paste it to my www folder. I would like to ask if it is possible or is there any way to run a laravel project without installing composer and laravel in my localhost wamp server?
To run laravel project on windows without composer just follow the instruction :
Goto your project folder
Press Shift + Right Button
Select "open command window here" menu
It will open a command line then write "php artisan serve" command
It will active internal server in laravel and you will get an url looks like http://localhost:8000
So in the address bar of web browser put http://localhost:8000 and hit enter. Hope you will access your project.
But for the development purpose you have to install composer.
hope it will helpful. Let me know if you get any problem.

Resources