Ron
Ron

Reputation: 23466

Zend Framework 2 - Doctrine 2 - How to use command line under Windows

I found this website listing several interesting Doctrine CLI commands.

I set up a Doctrine model class like it is described in one of these tutorials.

But I still wonder how to use the CLI commands. How can Zend or Doctrine know where my classes are and how does Windows know that my Doctrine executable lies within my projects library?

Does anyone know how to utilize these CLI commands?

Upvotes: 1

Views: 2982

Answers (1)

superdweebie
superdweebie

Reputation: 1576

Doctrine cli is based on the symfony console package.

If you use composer for installing, take a look in the vendor/bin directory. You will find .bat files for the doctrine cli there.

Upvotes: 2

Related Questions