0
php bin/console assets:install --env=prod --symlink --relative

My bundle is not in the generated list. There are other bundles in there.

The bundle is installed in vendors (from private vcs), registered in symfony, file structure

Resources
----public
    ----js
        main.js
    ----css
        main.css
----assets

etc...

The bundle class is empty, but I don't think that is the problem...

jim smith
  • 2,394
  • 5
  • 29
  • 35

1 Answers1

1

Found the problem. The bundle class WhateverBundle.php needs to be in the same directory as Resources

jim smith
  • 2,394
  • 5
  • 29
  • 35
  • No sure to understand what you mean with "same directory as the Resource directory" – COil May 09 '17 at 14:41