How can I add two doctrine ficture to composer.json? I think I have to include in:
"require": {
}
I have my fixture in src/AppBundle/DataFixture/ORM/
How can I add two doctrine ficture to composer.json? I think I have to include in:
"require": {
}
I have my fixture in src/AppBundle/DataFixture/ORM/
Composer is a dependency management tool, not a build automation tool.
You can use a task runner like Phing or Robo and have it run composer install then your fixtures command or any other command you need.