Skip to content

Commit 9e60ccf

Browse files
committed
Removing references of Zend - now replaced by Monolog
1 parent 5ba1899 commit 9e60ccf

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

book/page_creation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -531,14 +531,14 @@ method of the ``AppKernel`` class::
531531
{
532532
$bundles = array(
533533
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
534+
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
534535
new Symfony\Bundle\TwigBundle\TwigBundle(),
535-
536-
// enable third-party bundles
537-
new Symfony\Bundle\ZendBundle\ZendBundle(),
536+
new Symfony\Bundle\MonologBundle\MonologBundle(),
538537
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
539538
new Symfony\Bundle\DoctrineBundle\DoctrineBundle(),
540-
//new Symfony\Bundle\DoctrineMigrationsBundle\DoctrineMigrationsBundle(),
541-
//new Symfony\Bundle\DoctrineMongoDBBundle\DoctrineMongoDBBundle(),
539+
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
540+
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
541+
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
542542

543543
// register your bundles
544544
new Acme\StudyBundle\AcmeStudyBundle(),

contributing/code/tests.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ The test suite need the following third-party libraries:
3030
* Doctrine Migrations
3131
* Swiftmailer
3232
* Twig
33-
* Zend Framework
3433

3534
To install them all, run the `install_vendors.sh` script:
3635

cookbook/tools/autoloader.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ methods::
4747
$loader->registerNamespace('Symfony', __DIR__.'/vendor/symfony/src');
4848

4949
$loader->registerNamespaces(array(
50-
'Symfony' => __DIR__.'/vendor/symfony/src',
51-
'Zend' => __DIR__.'/vendor/zend/library',
50+
'Symfony' => __DIR__.'/../vendor/symfony/src',
51+
'Monolog' => __DIR__.'/../vendor/monolog/src',
5252
));
5353

5454
For classes that follow the PEAR naming convention, use the

quick_tour/the_architecture.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ PHP autoloading can be configured via ``app/autoload.php``::
6767
'Doctrine\\Common' => __DIR__.'/../vendor/doctrine-common/lib',
6868
'Doctrine\\DBAL' => __DIR__.'/../vendor/doctrine-dbal/lib',
6969
'Doctrine' => __DIR__.'/../vendor/doctrine/lib',
70-
'Zend\\Log' => __DIR__.'/../vendor/zend-log',
70+
'Monolog' => __DIR__.'/../vendor/monolog/src',
7171
'Assetic' => __DIR__.'/../vendor/assetic/src',
7272
'Acme' => __DIR__.'/../src',
7373
));
@@ -117,7 +117,7 @@ method of the ``AppKernel`` class::
117117
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
118118
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
119119
new Symfony\Bundle\TwigBundle\TwigBundle(),
120-
new Symfony\Bundle\ZendBundle\ZendBundle(),
120+
new Symfony\Bundle\MonologBundle\MonologBundle(),
121121
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
122122
new Symfony\Bundle\DoctrineBundle\DoctrineBundle(),
123123
new Symfony\Bundle\AsseticBundle\AsseticBundle(),

reference/map.rst.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* :ref:`SwiftMailerBundle (swiftmailer) <swift-mailer-configuration>`
88
* :doc:`TwigBundle (twig) </reference/bundle_configuration/TwigBundle>`
99
* :doc:`WebProfilerBundle (web_profiler) </reference/bundle_configuration/WebProfilerBundle>`
10-
* :doc:`ZendBundle (zend) </reference/bundle_configuration/ZendBundle>`
1110
* :doc:`MonologBundle (monolog) </reference/bundle_configuration/MonologBundle>`
1211

1312
* :doc:`Form Field Reference</book/forms/fields/index>`

0 commit comments

Comments
 (0)