0

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/

bytecode77
  • 14,163
  • 30
  • 110
  • 141
Isky
  • 1,328
  • 2
  • 14
  • 33

1 Answers1

0

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.

Amine Matmati
  • 283
  • 1
  • 9