Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install dependency (doctrine/dbal) on composer laravel

I am trying to execute a migration to rename some columns and I got an exception.

As I read on the documentation I have to add the doctrine/dbal dependency to my composer.json file. How do I do that? Which is the correct composer.json file. I have many in my application. Is the one that is on the same level as the folders app,bootstrap, public and vendor.

If so how do I add that dependency. Do I have to download anything?

By the way im using easyphp, not wamp!

Edit 1

After doing that the console throws this error

cmd

like image 502
elvainch Avatar asked Mar 14 '14 18:03

elvainch


2 Answers

1) To install dependency , run this command

composer require doctrine/dbal 

2) For 'git' is not recognized error, either you don't have git installed or the PATH is not added in the environment variables.

Install git for windows.

like image 101
Yogesh Yadav Avatar answered Sep 20 '22 06:09

Yogesh Yadav


To add this dependency open the composer.json at the root of your project (in the same level as app, public etc.) and in the require section add the doctrine/dbal package like:

"require": {     "laravel/framework": "4.1.*",     "doctrine/dbal": "v2.4.2" }, 

Save the file and run composer update

Edit

You probably installed git with the default settings and it's not in your PATH env.

Open Git Bash (it was installed with git - you will find it in your programs) and do composer update. By the way it's far better that windows command prompt.

like image 34
tliokos Avatar answered Sep 18 '22 06:09

tliokos