Bonjour,

Je m'exerce sur Symfony2 à travers un tuto sur le site de la ferme du web.

Vérifiant si tout s'est bien passé pour passer à la page suivante, j'ai cettte erreur:.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
Fatal error: Class 'Symfony\Bundle\DoctrineFixturesBundle\DoctrineFixturesBundle' not found in C:\wamp\www\Symfony\app\AppKernel.php on line 31
j'ai bien suivi le tuto en installant les bundles.

Le contenu de deps :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[symfony]
    git=http://github.com/symfony/symfony.git
    version=v2.0.17
 
[twig]
    git=http://github.com/fabpot/Twig.git
    version=v1.9.2
 
[monolog]
    git=http://github.com/Seldaek/monolog.git
    version=1.0.2
 
[doctrine-common]
    git=http://github.com/doctrine/common.git
    version=2.1.4
 
[doctrine-dbal]
    git=http://github.com/doctrine/dbal.git
    version=2.1.7
 
[doctrine]
    git=http://github.com/doctrine/doctrine2.git
    version=2.1.7
 
[swiftmailer]
    git=http://github.com/swiftmailer/swiftmailer.git
    version=v4.2.1
 
[assetic]
    git=http://github.com/kriswallsmith/assetic.git
    version=v1.0.3
 
[twig-extensions]
    git=http://github.com/fabpot/Twig-extensions.git
 
[metadata]
    git=http://github.com/schmittjoh/metadata.git
    version=1.0.0
 
[SensioFrameworkExtraBundle]
    git=http://github.com/sensio/SensioFrameworkExtraBundle.git
    target=/bundles/Sensio/Bundle/FrameworkExtraBundle
    version=origin/2.0
 
[JMSSecurityExtraBundle]
    git=http://github.com/schmittjoh/JMSSecurityExtraBundle.git
    target=/bundles/JMS/SecurityExtraBundle
    version=origin/1.0.x
 
[SensioDistributionBundle]
    git=http://github.com/sensio/SensioDistributionBundle.git
    target=/bundles/Sensio/Bundle/DistributionBundle
    version=origin/2.0
 
[SensioGeneratorBundle]
    git=http://github.com/sensio/SensioGeneratorBundle.git
    target=/bundles/Sensio/Bundle/GeneratorBundle
    version=origin/2.0
 
[AsseticBundle]
    git=http://github.com/symfony/AsseticBundle.git
    target=/bundles/Symfony/Bundle/AsseticBundle
    version=origin/2.0
 
[doctrine-fixtures]
    git=http://github.com/doctrine/data-fixtures.git
 
[DoctrineFixturesBundle]
    git=http://github.com/symfony/DoctrineFixturesBundle.git
    target=/bundles/Symfony/Bundle/DoctrineFixturesBundle
 
[Pagerfanta]
    git=http://github.com/whiteoctober/Pagerfanta.git
    target=/pagerfanta
 
[WhiteOctoberPagerfantaBundle]
    git=http://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git
    target=/bundles/WhiteOctober/PagerfantaBundle
 
[SonataIntlBundle]
    git=http://github.com/sonata-project/SonataIntlBundle.git
    target=/bundles/Sonata/IntlBundle
 
[GravatarBundle]
    git=http://github.com/ornicar/GravatarBundle.git
    target=/bundles/Ornicar/GravatarBundle
le contenu de appKernel.php
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
 
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
 
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
            new Symfony\Bundle\TwigBundle\TwigBundle(),
            new Symfony\Bundle\MonologBundle\MonologBundle(),
            new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
            new Symfony\Bundle\DoctrineBundle\DoctrineBundle(),
            new Symfony\Bundle\AsseticBundle\AsseticBundle(),
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
            new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
			new Sonata\IntlBundle\SonataIntlBundle(),
			new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
			new Ornicar\GravatarBundle\OrnicarGravatarBundle(),
            new Wmd\watchMyDeskBundle\WmdwatchMyDeskBundle(),
        );
 
        if (in_array($this->getEnvironment(), array('dev', 'test'))) {
            $bundles[] = new Acme\DemoBundle\AcmeDemoBundle();
            $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
            $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
            $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
			$bundles[] = new Symfony\Bundle\DoctrineFixturesBundle\DoctrineFixturesBundle();
        }
 
        return $bundles;
    }
 
    public function registerContainerConfiguration(LoaderInterface $loader)
    {
        $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
    }
}