First of all, i can\'t use composer because of my ISP, so, i need a way to install the DoctrineFixturesBundle
manually, so i started downloading it from g
I think you need to setup the autoloading in your composer.json
file:
{
"autoload": {
"psr-0": {
"Doctrine\\Bundle\\FixturesBundle": "vendor/doctrine/doctrine-fixtures-bundle",
"Doctrine\\Common\\DataFixtures": "vendor/doctrine/data-fixtures/lib",
}
}
}
Composer does this automatically on composer update
, but as you didn't install the packages using composer, this wasn't done for these packages.